clan_cli: move __init__.py into cli.py

This helps to reduce import cycles in python
If ANY python module from clan_cli is imported all the imports of the __init__.py are executed leading to a lot of cycles
This commit is contained in:
Johannes Kirschbauer
2025-07-13 15:52:29 +02:00
parent 9e0bdafa51
commit f3dab3f9bb
2 changed files with 1 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
from . import main
from .cli import main
if __name__ == "__main__":
main()