Skip to content
Snippets Groups Projects
Commit db55e32e authored by Millian Poquet's avatar Millian Poquet
Browse files

code: improve debug readibility

parent 5b7e5bc5
No related branches found
No related tags found
No related merge requests found
...@@ -57,6 +57,7 @@ class FilteredCelcatEvents: ...@@ -57,6 +57,7 @@ class FilteredCelcatEvents:
logging.warning('\nDetails of the involved time slots:') logging.warning('\nDetails of the involved time slots:')
problematic_courses = fetch_problem_df[['course_request_id']] problematic_courses = fetch_problem_df[['course_request_id']]
problematic_time_slots = problematic_courses.merge(self.df, how='inner', on='course_request_id') problematic_time_slots = problematic_courses.merge(self.df, how='inner', on='course_request_id')
problematic_time_slots = problematic_time_slots.sort_values(by=['course_request_id', 'start'])[['course_request_id', 'module_apogee', 'module_readable', 'start', 'end', 'course_type', 'group']]
logging.warning(f'\n{problematic_time_slots}') logging.warning(f'\n{problematic_time_slots}')
def parse_description(row): def parse_description(row):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment