Skip to content

Commit

Permalink
Type annotations
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Poulin <[email protected]>
  • Loading branch information
NoahMollerstuen and benjaminwp18 authored Jun 9, 2024
1 parent bfd0b2a commit 73baaca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/surface/gui/gui/pilot_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class GuiType(enum.Enum):
DEBUG = "debug"


TWO_MONITOR_CONFIG = {GuiType.PILOT: None, GuiType.LIVESTREAM: 1}
THREE_MONITOR_CONFIG = {GuiType.PILOT: 2, GuiType.LIVESTREAM: 1}
TWO_MONITOR_CONFIG: dict[GuiType, int | None] = {GuiType.PILOT: None, GuiType.LIVESTREAM: 1}
THREE_MONITOR_CONFIG: dict[GuiType, int | None] = {GuiType.PILOT: 2, GuiType.LIVESTREAM: 1}


def make_bottom_bar() -> QHBoxLayout:
Expand Down

0 comments on commit 73baaca

Please sign in to comment.