File tree 1 file changed +0
-4
lines changed
checkbox-support/checkbox_support/dbus
1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change 34
34
Optional ,
35
35
Set ,
36
36
)
37
- from typing_extensions import override
38
37
from checkbox_support .monitor_config import MonitorConfig
39
38
from gi .repository import Gio , GLib # type: ignore
40
39
@@ -231,15 +230,13 @@ def __init__(self):
231
230
cancellable = None ,
232
231
)
233
232
234
- @override
235
233
def get_connected_monitors (self ) -> Set [str ]:
236
234
"""
237
235
Get the connector name of each connected monitor, even if inactive.
238
236
"""
239
237
state = self .get_current_state ()
240
238
return {monitor .info .connector for monitor in state .physical_monitors }
241
239
242
- @override
243
240
def get_current_resolutions (self ) -> Dict [str , str ]:
244
241
"""Get current active resolutions for each monitor."""
245
242
@@ -252,7 +249,6 @@ def get_current_resolutions(self) -> Dict[str, str]:
252
249
resolution_map [monitor .info .connector ] = mode .resolution
253
250
return resolution_map
254
251
255
- @override
256
252
def set_extended_mode (self ) -> Dict [str , str ]:
257
253
"""
258
254
Set to extend mode so that each monitor can be displayed
You can’t perform that action at this time.
0 commit comments