Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson committed Jan 3, 2025
1 parent b83b884 commit e2fadcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/hooks/post_gen_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
if not {{ cookiecutter.add_cli }}:
Path("./src/{{ cookiecutter.project_slug }}/cli.py").unlink()
Path("./src/{{ cookiecutter.project_slug }}/logging.py").unlink()
Path("./docs/source/cli_reference.rst").unlink()
if {{ cookiecutter.add_docs }}:
Path("./docs/source/cli_reference.rst").unlink()
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

def initialize_logs(log_level: int = logging.DEBUG) -> None:
"""Configure logging.
:param log_level: app log level to set
"""
logging.basicConfig(
Expand Down

0 comments on commit e2fadcd

Please sign in to comment.