update __main__.py

This commit is contained in:
Sina Atalay 2024-02-07 19:23:40 +01:00
parent c431c7c8b5
commit 48d48f4bf2
1 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,9 @@
"""
`__main__.py` file is the file that gets executed when the RenderCV package itself is
invoked directly from the command line with `python -m rendercv`. That's why we have it
here so that we can invoke the CLI from the command line with `python -m rendercv`.
"""
from .cli import cli
if __name__ == "__main__":