Skip to content

Commit 7147de8

Browse files
committed
Formatted
1 parent 8483415 commit 7147de8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_bno055.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ def _read_register(self, register, length=1): # pylint: disable=arguments-diffe
408408
pass
409409
resp = self._uart.read(self._uart.in_waiting)
410410

411-
if resp[0] != 0xBB: # Recursion
411+
if resp[0] != 0xBB: # Recursion
412412
self._uart.write(bytes([0xAA, 0x01, register, length]))
413413
now = time.time()
414414
while self._uart.in_waiting < length + 2 and time.time() - now < 0.25:

0 commit comments

Comments
 (0)