pferd/PFERD/cli/__init__.py
2021-05-23 13:30:42 +02:00

12 lines
545 B
Python

# isort: skip_file
# The order of imports matters because each command module registers itself
# with the parser from ".parser". Because of this, isort is disabled for this
# file. Also, since we're reexporting or just using the side effect of
# importing itself, we get a few linting warnings, which we're disabling as
# well.
from . import command_local # noqa: F401 imported but unused
from . import command_kit_ilias_web # noqa: F401 imported but unused
from .parser import PARSER, load_default_section # noqa: F401 imported but unused