Skip to content

Commit 90c6f83

Browse files
committed
Fix format
1 parent 6834cda commit 90c6f83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

can/interfaces/robotell.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,9 @@ def fileno(self):
371371
try:
372372
return self.serialPortOrig.fileno()
373373
except io.UnsupportedOperation:
374-
raise NotImplementedError("fileno is not implemented using current CAN bus on this platform")
374+
raise NotImplementedError(
375+
"fileno is not implemented using current CAN bus on this platform"
376+
)
375377
except Exception as exception:
376378
raise CanOperationError("Cannot fetch fileno") from exception
377379

0 commit comments

Comments
 (0)