From a33287c97479524321ffb7a365dcdf6df8b832f6 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 20 Dec 2024 16:31:48 +0000 Subject: [PATCH] fix unbound error on runner result --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 4ad99c3..88a9b7c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -37,7 +37,7 @@ def test_app(outpath: str | bool): f"{outpath}", ], ) - elif not outpath: + else: result = runner.invoke( app, ["calculate-voltages", "tests/data/raw_data.csv"] )