✏️ Fix false inverse
This commit is contained in:
parent
1a89aa519c
commit
806e7a56a0
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ def ls(verbose: bool = typer.Option(False, "--verbose", "-v", help="Verbose outp
|
||||||
with Storage() as store:
|
with Storage() as store:
|
||||||
for v in store.votings:
|
for v in store.votings:
|
||||||
if only_active:
|
if only_active:
|
||||||
if Result(v).outcome != 'AUSSTEHEND':
|
if Result(v).outcome == 'AUSSTEHEND':
|
||||||
continue
|
continue
|
||||||
if verbose:
|
if verbose:
|
||||||
res = Result(v).result()
|
res = Result(v).result()
|
||||||
|
|
Loading…
Reference in a new issue