diff options
author | Alban Gruin | 2018-01-28 11:14:34 +0100 |
---|---|---|
committer | Alban Gruin | 2018-01-28 11:14:34 +0100 |
commit | 77a4b75431cfab7348db73b563dd005ce64be14a (patch) | |
tree | 850473bacc0a4b7203b5d7253a04c96baec9f3a8 /management/commands/timetables.py | |
parent | 7c73c8f900b86ebd58f48171cbd5284c29bdf840 (diff) |
Changements dans le formatage du code pour le rendre plus lisible
Diffstat (limited to 'management/commands/timetables.py')
-rw-r--r-- | management/commands/timetables.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/management/commands/timetables.py b/management/commands/timetables.py index cf48af6..2c299de 100644 --- a/management/commands/timetables.py +++ b/management/commands/timetables.py @@ -1,4 +1,4 @@ -# Copyright (C) 2017 Alban Gruin +# Copyright (C) 2017-2018 Alban Gruin # # celcatsanitizer is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published @@ -58,8 +58,8 @@ def process_timetable_week(source, soup, weeks_in_soup, force, # traitement et la fin de la semaine last_update_date = last_update_date.filter(begin__lt=end) - last_update_date = last_update_date \ - .aggregate(Min("last_update"))["last_update__min"] + last_update_date = last_update_date.aggregate( + Min("last_update"))["last_update__min"] # Date de mise à jour de Celcat, utilisée à des fins de statistiques new_update_date = get_update_date(soup) |