diff options
author | Filipe Laíns <lains@archlinux.org> | 2020-08-10 21:30:43 +0100 |
---|---|---|
committer | Filipe Laíns <lains@archlinux.org> | 2020-08-10 21:30:43 +0100 |
commit | 8ee4f6a8bc1f539a3c149301a71be4525c62361b (patch) | |
tree | 749faa9cd6a113bda6f239a6dddfc93ad1d584b0 /ioctl/hidraw.py | |
parent | 07f25739699f74351206c6821ef5425b1208f54d (diff) |
hidraw: minor stylistic change
Signed-off-by: Filipe Laíns <lains@archlinux.org>
Diffstat (limited to 'ioctl/hidraw.py')
-rw-r--r-- | ioctl/hidraw.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ioctl/hidraw.py b/ioctl/hidraw.py index 6c69c8e..a083683 100644 --- a/ioctl/hidraw.py +++ b/ioctl/hidraw.py @@ -95,7 +95,7 @@ class Hidraw(object): ioctl.IOCTL.IOR( 'H', self.HIDIOCGRDESC, ctypes.sizeof(HidrawReportDescriptor) - ).perform(self._fd, buf=buf) + ).perform(self._fd, buf) ret = HidrawReportDescriptor.from_buffer(buf) return list(ret.value)[:ret.size] |