7 lines
138 B
Python
7 lines
138 B
Python
|
"""Entry point for python."""
|
||
|
|
||
|
from python.cli import main # pragma: no cover
|
||
|
|
||
|
if __name__ == "__main__": # pragma: no cover
|
||
|
main()
|