Skip to content
Snippets Groups Projects
Verified Commit ca6a3ef0 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

Add type annotations

parent 2ee21827
No related branches found
No related tags found
No related merge requests found
...@@ -43,12 +43,43 @@ class ScheduleData(TypedDict): ...@@ -43,12 +43,43 @@ class ScheduleData(TypedDict):
default_playlist_id: int | None default_playlist_id: int | None
end_time: str end_time: str
first_date: str first_date: str
id: int | None
is_repetition: bool is_repetition: bool
last_date: str | None last_date: str | None
rrule: int rrule: int
show: int | None
start_time: str start_time: str
class Collision(TypedDict):
end: str
id: int
memo: str
note_id: int | None
playlist_id: int | None
schedule: int
show: int
show_name: str
start: str
class ProjectedEntry(TypedDict):
collisions: list[Collision]
end: str
error: str | None
hash: str
solution_choices: set
start: str
class ConflictsData(TypedDict):
projected: list[ProjectedEntry]
solutions: dict[str, str]
notes: dict
playlists: dict
schedule: ScheduleData
# TODO: add type annotations # TODO: add type annotations
def resolve_conflicts(data, schedule_pk, show_pk): def resolve_conflicts(data, schedule_pk, show_pk):
""" """
...@@ -380,8 +411,7 @@ def instantiate_upcoming_schedule( ...@@ -380,8 +411,7 @@ def instantiate_upcoming_schedule(
) )
# TODO: add type annotations def make_conflicts(data: ScheduleData, schedule_pk: int | None, show_pk: int):
def make_conflicts(sdl, schedule_pk, show_pk):
""" """
Retrieves POST vars Retrieves POST vars
Generates a schedule Generates a schedule
...@@ -390,7 +420,7 @@ def make_conflicts(sdl, schedule_pk, show_pk): ...@@ -390,7 +420,7 @@ def make_conflicts(sdl, schedule_pk, show_pk):
""" """
# Generate schedule to be saved # Generate schedule to be saved
schedule = instantiate_upcoming_schedule(sdl, show_pk, schedule_pk) schedule = instantiate_upcoming_schedule(data, show_pk, schedule_pk)
# Copy if first_date changes for generating timeslots # Copy if first_date changes for generating timeslots
gen_schedule = schedule gen_schedule = schedule
...@@ -399,7 +429,7 @@ def make_conflicts(sdl, schedule_pk, show_pk): ...@@ -399,7 +429,7 @@ def make_conflicts(sdl, schedule_pk, show_pk):
# If extending: Get last timeslot and start generating from that date on # If extending: Get last timeslot and start generating from that date on
if schedule_pk is not None: if schedule_pk is not None:
existing_schedule = Schedule.objects.get(pk=int(schedule_pk)) existing_schedule = Schedule.objects.get(pk=schedule_pk)
if schedule.last_date > existing_schedule.last_date: if schedule.last_date > existing_schedule.last_date:
last_timeslot = ( last_timeslot = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment