refactoring

This commit is contained in:
Maxim Devaev
2023-03-07 23:54:05 +02:00
parent 002031baf1
commit f652eca9c2
15 changed files with 49 additions and 49 deletions

View File

@@ -129,12 +129,12 @@ class Plugin(BaseUserGpioDriver):
self.__set_udc_enabled(True)
def __set_udc_enabled(self, enabled: bool) -> None:
with open(self.__udc_path, "w") as udc_file:
udc_file.write(self.__udc if enabled else "\n")
with open(self.__udc_path, "w") as file:
file.write(self.__udc if enabled else "\n")
def __is_udc_enabled(self) -> bool:
with open(self.__udc_path) as udc_file:
return bool(udc_file.read().strip())
with open(self.__udc_path) as file:
return bool(file.read().strip())
def __str__(self) -> str:
return f"GPIO({self._instance_name})"