From 3c972583070989c460be213dc0f68b28ae1b8cba Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 2 Oct 2025 21:26:06 +0200 Subject: [PATCH] =?utf8?q?Fix=20erroneous=20argv=20counting=20(once=20more?= =?utf8?q?=20=E2=80=A6).?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.py b/src/run.py index bc2682d..3d0d4fe 100755 --- a/src/run.py +++ b/src/run.py @@ -42,7 +42,7 @@ def main_loop(cls_term: type[TerminalInterface], cls_tui: type[BaseTui] if __name__ == '__main__': - if len(argv) == 0: + if len(argv) == 1: main_loop(Terminal, ClientTui) elif len(argv) == 2 and argv[1] == 'test': for path in PATH_TESTS.iterdir(): -- 2.30.2