Skip to content

Commit

Permalink
Type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
machinewrapped committed Jun 3, 2024
1 parent ac45b6d commit d8c0f7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GUI/ProjectSelection.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ def __repr__(self) -> str:

class ProjectSelection():
def __init__(self) -> None:
self.scenes = {}
self.batches = {}
self.lines = {}
self.scenes : dict[int, SelectionScene] = {}
self.batches : dict[(int,int), SelectionBatch] = {}
self.lines : dict[int, SelectionLine] = {}

@property
def scene_numbers(self) -> list[int]:
Expand Down

0 comments on commit d8c0f7d

Please sign in to comment.