From f6a5a9995820c73d20e02447658cbe00fc0a982b Mon Sep 17 00:00:00 2001 From: Daniel Nuzzo-Mueller Date: Mon, 6 Feb 2023 11:00:57 -0500 Subject: [PATCH] chore: linting fix --- openedx/core/djangoapps/user_api/accounts/views.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openedx/core/djangoapps/user_api/accounts/views.py b/openedx/core/djangoapps/user_api/accounts/views.py index f006083006..13b7ad39f6 100644 --- a/openedx/core/djangoapps/user_api/accounts/views.py +++ b/openedx/core/djangoapps/user_api/accounts/views.py @@ -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)