We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b83b884 commit e2fadcdCopy full SHA for e2fadcd
python/hooks/post_gen_project.py
@@ -10,4 +10,5 @@
10
if not {{ cookiecutter.add_cli }}:
11
Path("./src/{{ cookiecutter.project_slug }}/cli.py").unlink()
12
Path("./src/{{ cookiecutter.project_slug }}/logging.py").unlink()
13
- Path("./docs/source/cli_reference.rst").unlink()
+ if {{ cookiecutter.add_docs }}:
14
+ Path("./docs/source/cli_reference.rst").unlink()
python/{{cookiecutter.project_slug}}/src/{{cookiecutter.project_slug}}/logging.py
@@ -5,6 +5,7 @@
5
6
def initialize_logs(log_level: int = logging.DEBUG) -> None:
7
"""Configure logging.
8
+
9
:param log_level: app log level to set
"""
logging.basicConfig(
0 commit comments