Skip to content

Commit

Permalink
Fixed black error
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesstottmoj committed Dec 4, 2024
1 parent 1041579 commit ae494f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controlpanel/cli/management/commands/feedback_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def handle(self, *args, **options):
if options["all"]:
feedback_items = Feedback.objects.all()
else:
self.stdout.write(f"num_weeks: {options["num_weeks"]}")
self.stdout.write(f"num_weeks: {options['num_weeks']}")
timeframe = today - timedelta(weeks=options["num_weeks"])
feedback_items = Feedback.objects.filter(date_added__gte=timeframe)

Expand Down

0 comments on commit ae494f1

Please sign in to comment.