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

@@ -75,13 +75,13 @@ class Drive:
# =====
def __get_param(self, param: str) -> str:
with open(os.path.join(self.__lun_path, param)) as param_file:
return param_file.read().strip()
with open(os.path.join(self.__lun_path, param)) as file:
return file.read().strip()
def __set_param(self, param: str, value: str) -> None:
try:
with open(os.path.join(self.__lun_path, param), "w") as param_file:
param_file.write(value + "\n")
with open(os.path.join(self.__lun_path, param), "w") as file:
file.write(value + "\n")
except OSError as err:
if err.errno == errno.EBUSY:
raise MsdDriveLockedError()