chore: linting fix

This commit is contained in:
Daniel Nuzzo-Mueller
2023-02-06 11:00:57 -05:00
parent b3690ef88b
commit f6a5a99958

View File

@@ -942,9 +942,9 @@ class AccountRetirementStatusView(ViewSet):
limit_count = int(limit)
except ValueError:
return Response(
f'Limit could not be parsed: {limit}, please ensure this is an integer'
,status=status.HTTP_400_BAD_REQUEST
)
f'Limit could not be parsed: {limit}, please ensure this is an integer',
status=status.HTTP_400_BAD_REQUEST
)
earliest_datetime = datetime.datetime.now(pytz.UTC) - datetime.timedelta(days=cool_off_days)