Skip to content

Commit fd224b0

Browse files
committed
Linted
1 parent ce64df4 commit fd224b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_shell.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def run_command(self, cmd, suppress_message=False, return_output=False):
7373
while True:
7474
output = proc.stdout.readline()
7575
err = proc.stderr.read()
76-
if len(err) and not suppress_message:
76+
if err and not suppress_message:
7777
self.error(err.decode("utf-8", errors="ignore"))
7878
if len(output) == 0 and proc.poll() is not None:
7979
break

0 commit comments

Comments
 (0)