2021-05-23 11:57:59 +02:00
|
|
|
# isort: skip_file
|
2021-05-22 15:03:45 +02:00
|
|
|
|
2021-05-23 11:57:59 +02:00
|
|
|
# The order of imports matters because each command module registers itself
|
2021-05-31 18:19:05 +02:00
|
|
|
# with the parser from ".parser" and the import order affects the order in
|
|
|
|
# which they appear in the help. Because of this, isort is disabled for this
|
2021-05-23 11:57:59 +02:00
|
|
|
# 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.
|
2021-05-22 15:03:45 +02:00
|
|
|
|
2021-05-23 11:57:59 +02:00
|
|
|
from . import command_local # noqa: F401 imported but unused
|
2021-05-23 13:26:40 +02:00
|
|
|
from . import command_kit_ilias_web # noqa: F401 imported but unused
|
2021-10-21 12:01:41 +02:00
|
|
|
from . import command_kit_ipd # noqa: F401 imported but unused
|
2021-05-31 18:19:05 +02:00
|
|
|
from .parser import PARSER, ParserLoadError, load_default_section # noqa: F401 imported but unused
|