summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd/otg/drive.py
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/plugins/msd/otg/drive.py')
-rw-r--r--kvmd/plugins/msd/otg/drive.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/kvmd/plugins/msd/otg/drive.py b/kvmd/plugins/msd/otg/drive.py
index 9fc947ab..e5dbdbb1 100644
--- a/kvmd/plugins/msd/otg/drive.py
+++ b/kvmd/plugins/msd/otg/drive.py
@@ -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()