Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
aaxelb committed Nov 22, 2024
1 parent a8c046e commit 9fa7e10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osf/management/commands/monthly_reporters_go.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def add_arguments(self, parser):

def handle(self, *args, **kwargs):
monthly_reporters_go(
yearmonth=kwargs['yearmonth'].upper(),
yearmonth=kwargs['yearmonth'],
reporter_key=kwargs['reporter'].upper(),
)
self.stdout.write(self.style.SUCCESS(
Expand All @@ -120,4 +120,4 @@ def _get_reporter(reporter_key: str, yearmonth: str):


def _enum_names(enum_cls) -> list[str]:
return list(AllMonthlyReporters.__members__.keys())
return list(enum_cls.__members__.keys())

0 comments on commit 9fa7e10

Please sign in to comment.