Fix typos.
This commit is contained in:
@@ -4,3 +4,5 @@
|
|||||||
*.mkv
|
*.mkv
|
||||||
part*
|
part*
|
||||||
venv/
|
venv/
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
|||||||
+1
-1
@@ -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 +0,0 @@
|
|||||||
__pycache__
|
|
||||||
@@ -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())
|
||||||
|
|||||||
Reference in New Issue
Block a user