Skip to content

Commit

Permalink
The linter must not defeat me
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahMollerstuen committed Jun 9, 2024
1 parent 31e79fb commit 54337af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/surface/gui/gui/pilot_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def __init__(self) -> None:
self.apply_monitor_config(gui_type)

def make_bottom_bar(self) -> QHBoxLayout:
"""Generate a bottom pane used by multiple gui types
"""Generate a bottom pane used by multiple gui types.
Returns
-------
Expand All @@ -161,7 +161,8 @@ def make_bottom_bar(self) -> QHBoxLayout:
return bottom_screen_layout

def apply_monitor_config(self, gui_type: GuiType) -> None:
"""Fullscreen the app to a specific monitor, depending on gui_type and the monitor config
"""Fullscreen the app to a specific monitor, depending on gui_type and the monitor config.
Either fullscreens the app to a monitor specified by TWO_MONITOR_CONFIG or
THREE_MONITOR_CONFIG (depending on the number of monitors present), or does nothing if no
config exists for the number of monitors and gui type
Expand All @@ -171,7 +172,6 @@ def apply_monitor_config(self, gui_type: GuiType) -> None:
gui_type : GuiType
The type of gui that is being initialized
"""

screen = self.screen()
if screen is None:
return
Expand Down

0 comments on commit 54337af

Please sign in to comment.