🎨 Format Python code with Black

This commit is contained in:
kay0u 2021-09-17 11:53:30 +00:00 committed by GitHub
parent fdc61c915c
commit 19df292c73

View file

@ -121,7 +121,7 @@ class LogPipe(threading.Thread):
def run(self):
"""Run the thread, logging everything."""
for line in iter(self.pipeReader.readline, ""):
self.queue.put((self.log_callback, line.decode('utf-8').strip("\n")))
self.queue.put((self.log_callback, line.decode("utf-8").strip("\n")))
self.pipeReader.close()