Skip to content

Commit

Permalink
Silence ruff linter
Browse files Browse the repository at this point in the history
  • Loading branch information
ayjayt committed Aug 7, 2024
1 parent 09c4ed8 commit aec58df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def read_jsons(self, blocking=True, debug=False):
raw_buffer += os.read(self.read_from_chromium, 10000)
except BlockingIOError:
return jsons
if debug: print(raw_buffer, file=sys.stderr)
if debug: print(raw_buffer, file=sys.stderr) # noqa
for raw_message in raw_buffer.decode('utf-8').split('\0'):
if raw_message:
jsons.append(json.loads(raw_message))
Expand Down

0 comments on commit aec58df

Please sign in to comment.