From 48d48f4bf2638d27e7378cba59a3b3dc599d242c Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Wed, 7 Feb 2024 19:23:40 +0100 Subject: [PATCH] update __main__.py --- rendercv/__main__.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rendercv/__main__.py b/rendercv/__main__.py index 98dcca0..846b14b 100644 --- a/rendercv/__main__.py +++ b/rendercv/__main__.py @@ -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__":