music_album_creation.__main__   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 15
rs 10
c 0
b 0
f 0
wmc 0
1
"""Run `python -m create_album`.
2
3
Allow invoking Music Album Creation CLI as a python module with the
4
`python -m create_album` command.
5
6
This is an alternative to directly invoking the cli that uses python as the
7
"entrypoint".
8
"""
9
from __future__ import absolute_import
10
11
from music_album_creation.create_album import main
12
13
if __name__ == "__main__":  # pragma: no cover
14
    main(prog_name="music-album-creation")
15