salt/tasks/__init__.py
Pedro Algarvio 65e12043eb Automatically remove import comments on files.
This is desired because now imports are automatically sorted and these
header comments often get misplaced.

Fixes #57979
2020-09-24 13:47:43 -07:00

9 lines
461 B
Python

from invoke import Collection # pylint: disable=3rd-party-module-not-gated
from . import docs, filemap, imports, loader
ns = Collection()
ns.add_collection(Collection.from_module(docs, name="docs"), name="docs")
ns.add_collection(Collection.from_module(loader, name="loader"), name="loader")
ns.add_collection(Collection.from_module(filemap, name="filemap"), name="filemap")
ns.add_collection(Collection.from_module(imports, name="imports"), name="imports")