Skip to content

Commit

Permalink
Fix __main__ typo in pyproject.toml (#226)
Browse files Browse the repository at this point in the history
Fixes the `__naim__` typo in the script definition that should be `__main__`
  • Loading branch information
jamt9000 authored Aug 4, 2024
1 parent 1685e26 commit d6efd2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies = [
"watchdog>=2.3.1",
]
urls.Source = "https://github.com/python-cachier/cachier"
scripts.cachier = "cachier.__naim__:cli"
scripts.cachier = "cachier.__main__:cli"

[tool.setuptools]
include-package-data = true
Expand Down

0 comments on commit d6efd2e

Please sign in to comment.