Spaces:
Running
Running
File size: 347 Bytes
13a7d69 beb32ed 13a7d69 beb32ed 13a7d69 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
"""Task collections."""
# mypy: ignore-errors
# %% IMPORTS
from invoke import Collection
from . import checks, cleans, formats, installs, runs
# %% NAMESPACES
ns = Collection()
# %% COLLECTIONS
ns.add_collection(checks)
ns.add_collection(cleans)
ns.add_collection(formats)
ns.add_collection(installs)
ns.add_collection(runs, default=True)
|