Skip to content
Snippets Groups Projects
Unverified Commit d46d99a7 authored by Andreas Hubel's avatar Andreas Hubel
Browse files

fixup typing

parent 25f04e74
Branches
No related tags found
No related merge requests found
...@@ -58,9 +58,9 @@ class Day: ...@@ -58,9 +58,9 @@ class Day:
def __init__(self, day, parent: 'Schedule'): def __init__(self, day, parent: 'Schedule'):
self.day = day self.day = day
self.rooms = OrderedDict < RoomDay > () self.rooms: OrderedDict[str, Room] = OrderedDict()
self.parent = parent self.parent = parent
self.virtual_rooms = List < PseudoRoom > () self.virtual_rooms: List[PseudoRoom] = []
def index(self): def index(self):
return self.day.index return self.day.index
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment