| Total Complexity | 0 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | """ |
||
| 2 | Entrypoint module, in case you use `python -mnameless`. |
||
| 3 | |||
| 4 | |||
| 5 | Why does this file exist, and why __main__? For more info, read: |
||
| 6 | |||
| 7 | - https://www.python.org/dev/peps/pep-0338/ |
||
| 8 | - https://docs.python.org/2/using/cmdline.html#cmdoption-m |
||
| 9 | - https://docs.python.org/3/using/cmdline.html#cmdoption-m |
||
| 10 | """ |
||
| 11 | |||
| 12 | from nameless.cli import run |
||
| 13 | |||
| 14 | if __name__ == "__main__": |
||
| 15 | run() |
||
| 16 |