Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
ca6a3ef0
Verified
Commit
ca6a3ef0
authored
1 year ago
by
Ernesto Rico Schmidt
Browse files
Options
Downloads
Patches
Plain Diff
Add type annotations
parent
2ee21827
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
program/services.py
+34
-4
34 additions, 4 deletions
program/services.py
with
34 additions
and
4 deletions
program/services.py
+
34
−
4
View file @
ca6a3ef0
...
@@ -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
=
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment