From d3195592723d2e217b3e26f8f87098b9dbbd1c62 Mon Sep 17 00:00:00 2001 From: Luca Date: Sun, 23 Feb 2025 17:57:25 +0100 Subject: [PATCH] fix(computescores): unexpected keyword argument --- pretalx_musicrate/__init__.py | 2 +- pretalx_musicrate/management/commands/computescores.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pretalx_musicrate/__init__.py b/pretalx_musicrate/__init__.py index e3a4fd6..de91f34 100644 --- a/pretalx_musicrate/__init__.py +++ b/pretalx_musicrate/__init__.py @@ -1 +1 @@ -__version__ = "2025.6.0" +__version__ = "2025.6.1" diff --git a/pretalx_musicrate/management/commands/computescores.py b/pretalx_musicrate/management/commands/computescores.py index 11ddd2f..3ef75fc 100644 --- a/pretalx_musicrate/management/commands/computescores.py +++ b/pretalx_musicrate/management/commands/computescores.py @@ -21,7 +21,7 @@ class Command(BaseCommand): def add_arguments(self, parser): parser.add_argument( - "-a", "--all", action="store_true", help="include frozen jurors", type=bool + "-a", "--all", action="store_true", help="include frozen jurors" ) parser.add_argument("event")