|
@@ -22,12 +22,12 @@ def main() -> None:
|
|
|
from . import _version
|
|
|
from .commands import command_functions
|
|
|
|
|
|
- @click.group()
|
|
|
+ @click.group() # type: ignore
|
|
|
@click.version_option(version=_version.get_versions()["version"])
|
|
|
def _main() -> None:
|
|
|
pass
|
|
|
|
|
|
for command in command_functions:
|
|
|
- _main.add_command(command)
|
|
|
+ _main.add_command(command) # type: ignore
|
|
|
|
|
|
- _main()
|
|
|
+ _main() # type: ignore
|