Skip to content

Commit

Permalink
move logger to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
Nora-Olivia-Ammann committed Mar 18, 2024
1 parent 3693d97 commit 83b3ddc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ homepage = "https://www.dasch.swiss/"
repository = "https://github.com/dasch-swiss/dsp-tools"
include = [
"src/dsp_tools/resources/*",
"src/dsp_tools/resources/logger_config.yml",
"src/dsp_tools/py.typed" # see https://mypy.readthedocs.io/en/stable/installed_packages.html#making-pep-561-compatible-packages
]

Expand Down
2 changes: 1 addition & 1 deletion src/dsp_tools/cli/entry_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def main() -> None:
"""
Main entry point of the program as referenced in pyproject.toml
"""
logger_config()
run(sys.argv[1:])


Expand Down Expand Up @@ -283,5 +284,4 @@ def _derive_sipi_url(


if __name__ == "__main__":
logger_config()
main()

0 comments on commit 83b3ddc

Please sign in to comment.