Fix typos.

This commit is contained in:
Frédéric Tronel
2026-08-28 16:23:35 +02:00
parent 97ef0e972c
commit e6814f483a
4 changed files with 4 additions and 3 deletions
+2
View File
@@ -4,3 +4,5 @@
*.mkv *.mkv
part* part*
venv/ venv/
__pycache__/
*.py[cod]
+1 -1
View File
@@ -15,7 +15,7 @@ packages = [
] ]
[project.scripts] [project.scripts]
tscut = "tscut:main" tscut = "tscut.cli:main"
[build-system] [build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"] requires = ["poetry-core>=2.0.0,<3.0.0"]
-1
View File
@@ -1 +0,0 @@
__pycache__
+1 -1
View File
@@ -4,7 +4,7 @@
"""Entry point for ``python -m tscut``.""" """Entry point for ``python -m tscut``."""
from tscut.cli import main from .cli import main
if __name__ == "__main__": if __name__ == "__main__":
raise SystemExit(main()) raise SystemExit(main())