We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5db6083 commit 682a997Copy full SHA for 682a997
parallel/parallelppdev.py
@@ -363,15 +363,15 @@ def PPGETTIME(self):
363
"""
364
ret = struct.pack('ll', 0, 0)
365
ret = fcntl.ioctl(self._fd, PPGETTIME, ret)
366
- return timevalToFloat(ret)
+ return self.timevalToFloat(ret)
367
368
def PPSETTIME(self, time):
369
370
Sets the time-out (see PPGETTIME for more information).
371
'time' is the new time-out in seconds; floating-point values
372
are acceptable.
373
374
- fcntl.ioctl(self._fd, PPSETTIME, floatToTimeval(time))
+ fcntl.ioctl(self._fd, PPSETTIME, self.floatToTimeval(time))
375
376
def PPGETMODES(self):
377
tox.ini
@@ -0,0 +1,3 @@
1
+# tox is not used, but flake 8 reads this file
2
+[flake8]
3
+max-line-length = 120
0 commit comments