hardware: make set_display_power not abstract (#35061)

hardware: make set_dispaly_power not abstract

follow-up to https://github.com/commaai/openpilot/pull/35060#discussion_r2058829397
This commit is contained in:
Cameron Clough
2025-04-24 20:18:31 +01:00
committed by GitHub
parent 196848c023
commit 8088438bd6
2 changed files with 0 additions and 4 deletions
-1
View File
@@ -130,7 +130,6 @@ class HardwareBase(ABC):
def get_thermal_config(self):
return ThermalConfig()
@abstractmethod
def set_display_power(self, on: bool):
pass
-3
View File
@@ -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