From 19df292c737212b5f7e7f7b0707bd816f5705fff Mon Sep 17 00:00:00 2001 From: kay0u Date: Fri, 17 Sep 2021 11:53:30 +0000 Subject: [PATCH] :art: Format Python code with Black --- moulinette/utils/process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moulinette/utils/process.py b/moulinette/utils/process.py index 95b7dce9..e5f52b02 100644 --- a/moulinette/utils/process.py +++ b/moulinette/utils/process.py @@ -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()