Skip to content

Commit

Permalink
Fix argument for command
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Jan 24, 2025
1 parent b4e1827 commit 4c25962
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ class Command(BaseCommand):
def add_arguments(self, parser):
parser.add_argument(
"--dry-run",
"--club",
help="Run without making any changes",
)
parser.add_argument(
"--club",
help="Only merge committees for this club",
)
parser.set_defaults(dry_run=False)

def handle(self, *args, **kwargs):
Expand Down

0 comments on commit 4c25962

Please sign in to comment.