| Total Complexity | 0 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Changes | 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 |