From 26b5f62f16f1dbc311bed2c16f12e5902c7bcd6d Mon Sep 17 00:00:00 2001 From: Well Date: Mon, 11 Sep 2023 14:40:01 +0800 Subject: [PATCH] print - lint --- education/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/education/main.py b/education/main.py index 018113e4d6..3a408cfd71 100644 --- a/education/main.py +++ b/education/main.py @@ -40,7 +40,7 @@ def get_enrollees(connection_string, list_id: list): enrollees_application_data = get_application_by_id(connection_string, list_id_str) enrollees_achievements = get_achievements_by_id(connection_string, list_id_str) except (OperationalError, InterfaceError): - print('Database connection error') + print('Database connection error') # noqa: F201 return ( enrollees_person_data, enrollees_grades, @@ -56,7 +56,7 @@ def get_ids_changes_enrollees(connection_string: str): try: changes_log = get_changes(connection_string, last_time_str) except (OperationalError, InterfaceError): - print('Database connection error') + print('Database connection error') # noqa: F201 else: curren_log = None for curren_log in changes_log: