nameless.__main__   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 4
dl 0
loc 16
rs 10
c 0
b 0
f 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