summaryrefslogtreecommitdiff
path: root/kvmd/plugins/msd/relay.py
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2020-05-11 08:06:44 +0300
committerDevaev Maxim <[email protected]>2020-05-11 08:06:44 +0300
commit98a176f7408350741f89547ea6d1d6e519965cbf (patch)
tree872a8f1c288975c118e0384e44973c944ea5b1f2 /kvmd/plugins/msd/relay.py
parent60b6c219d91addfd79a30cfa9c20b398eb3391ae (diff)
lint fixes
Diffstat (limited to 'kvmd/plugins/msd/relay.py')
-rw-r--r--kvmd/plugins/msd/relay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kvmd/plugins/msd/relay.py b/kvmd/plugins/msd/relay.py
index 09a8710e..43baeadc 100644
--- a/kvmd/plugins/msd/relay.py
+++ b/kvmd/plugins/msd/relay.py
@@ -127,7 +127,7 @@ def _parse_image_info_bytes(data: bytes) -> Optional[_ImageInfo]:
def _ioctl_uint32(device_file: IO, request: int) -> int:
buf = b"\0" * 4
- buf = fcntl.ioctl(device_file.fileno(), request, buf)
+ buf = fcntl.ioctl(device_file.fileno(), request, buf) # type: ignore
result = struct.unpack("I", buf)[0]
assert result > 0, (device_file, request, buf)
return result