From b3690ef88bbaead0a28e8cc76fd8263ae66f18c1 Mon Sep 17 00:00:00 2001 From: Daniel Nuzzo-Mueller Date: Sun, 5 Feb 2023 08:49:15 -0500 Subject: [PATCH] chore: Try to fix linting --- openedx/core/djangoapps/user_api/accounts/views.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/user_api/accounts/views.py b/openedx/core/djangoapps/user_api/accounts/views.py index 7787d6e743..f006083006 100644 --- a/openedx/core/djangoapps/user_api/accounts/views.py +++ b/openedx/core/djangoapps/user_api/accounts/views.py @@ -941,7 +941,10 @@ class AccountRetirementStatusView(ViewSet): try: 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) + return Response( + 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)