diff options
Diffstat (limited to 'kvmd/plugins/ugpio/otgconf.py')
-rw-r--r-- | kvmd/plugins/ugpio/otgconf.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kvmd/plugins/ugpio/otgconf.py b/kvmd/plugins/ugpio/otgconf.py index 28eae8fe..e24c26b9 100644 --- a/kvmd/plugins/ugpio/otgconf.py +++ b/kvmd/plugins/ugpio/otgconf.py @@ -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})" |