Files
Arslan, Erdem 88578fe007
All checks were successful
checks-impure / test (pull_request) Successful in 29s
checks / test (pull_request) Successful in 3m19s
fix formatting
2023-12-10 00:45:52 +01:00

13 lines
220 B
Python

#!/usr/bin/env python3
import os
import sys
sys.path.insert(
0, os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
)
from clan_cli import main # NOQA
if __name__ == "__main__":
main()