Skip to content

Commit 7e759db

Browse files
committed
fix: remove override
1 parent 4e94d02 commit 7e759db

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

checkbox-support/checkbox_support/dbus/gnome_monitor.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
Optional,
3535
Set,
3636
)
37-
from typing_extensions import override
3837
from checkbox_support.monitor_config import MonitorConfig
3938
from gi.repository import Gio, GLib # type: ignore
4039

@@ -231,15 +230,13 @@ def __init__(self):
231230
cancellable=None,
232231
)
233232

234-
@override
235233
def get_connected_monitors(self) -> Set[str]:
236234
"""
237235
Get the connector name of each connected monitor, even if inactive.
238236
"""
239237
state = self.get_current_state()
240238
return {monitor.info.connector for monitor in state.physical_monitors}
241239

242-
@override
243240
def get_current_resolutions(self) -> Dict[str, str]:
244241
"""Get current active resolutions for each monitor."""
245242

@@ -252,7 +249,6 @@ def get_current_resolutions(self) -> Dict[str, str]:
252249
resolution_map[monitor.info.connector] = mode.resolution
253250
return resolution_map
254251

255-
@override
256252
def set_extended_mode(self) -> Dict[str, str]:
257253
"""
258254
Set to extend mode so that each monitor can be displayed

0 commit comments

Comments
 (0)