Skip to content

Commit 149a0ef

Browse files
committed
Correct multiline error string
1 parent d71ac1b commit 149a0ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

adafruit_scd4x.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,8 +326,8 @@ def _send_command(self, cmd: int, cmd_delay: float = 0) -> None:
326326
i2c.write(self._cmd, end=2)
327327
except OSError as err:
328328
raise RuntimeError(
329-
"Could not communicate via I2C, some commands/settings \
330-
unavailable while in working mode"
329+
"Could not communicate via I2C, some commands/settings "
330+
"unavailable while in working mode"
331331
) from err
332332
time.sleep(cmd_delay)
333333

0 commit comments

Comments
 (0)