From 3834ecba0761611734963400c8133b5a894090ee Mon Sep 17 00:00:00 2001 From: TimeTravelPenguin <35803538+TimeTravelPenguin@users.noreply.github.com> Date: Thu, 8 Feb 2024 01:39:56 +1100 Subject: [PATCH] Updated script --- pyproject.toml | 5 +++-- src/BAET/cli/cli.py | 4 ---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1da20b2..70696d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,8 +34,9 @@ homepage = "https://github.com/TimeTravelPenguin/BulkAudioExtractTool" repository = "https://github.com/TimeTravelPenguin/BulkAudioExtractTool" [tool.poetry.scripts] -baet = "BAET.__main__:main" -cli = "BAET.cli.cli:test" +# baet = "BAET.__main__:main" +# cli = "BAET.cli.cli:test" +baet = "BAET.cli.cli:cli" debug = "BAET.cli.__main__:debug" [tool.poetry.dependencies] diff --git a/src/BAET/cli/cli.py b/src/BAET/cli/cli.py index 75c4e57..d3e3b0d 100644 --- a/src/BAET/cli/cli.py +++ b/src/BAET/cli/cli.py @@ -34,7 +34,3 @@ def cli(logging: bool) -> None: def test() -> None: """Test the CLI.""" cli() - - -if __name__ == "__main__": - test()