diff --git a/system/hardware/base.py b/system/hardware/base.py index f2c627d339..1e3b94e44e 100644 --- a/system/hardware/base.py +++ b/system/hardware/base.py @@ -130,7 +130,6 @@ class HardwareBase(ABC): def get_thermal_config(self): return ThermalConfig() - @abstractmethod def set_display_power(self, on: bool): pass diff --git a/system/hardware/pc/hardware.py b/system/hardware/pc/hardware.py index 091f6a9b25..017a449c90 100644 --- a/system/hardware/pc/hardware.py +++ b/system/hardware/pc/hardware.py @@ -53,9 +53,6 @@ class Pc(HardwareBase): def shutdown(self): print("SHUTDOWN!") - def set_display_power(self, on): - pass - def set_screen_brightness(self, percentage): pass