From 806e7a56a0f44af4d3ca4fbc2c3b3de61b28b36d Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Mon, 3 Apr 2023 18:12:31 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20false=20inverse?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- voting/cli/voting.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voting/cli/voting.py b/voting/cli/voting.py index bf9dad4..5416a0d 100644 --- a/voting/cli/voting.py +++ b/voting/cli/voting.py @@ -61,7 +61,7 @@ def ls(verbose: bool = typer.Option(False, "--verbose", "-v", help="Verbose outp with Storage() as store: for v in store.votings: if only_active: - if Result(v).outcome != 'AUSSTEHEND': + if Result(v).outcome == 'AUSSTEHEND': continue if verbose: res = Result(v).result()