diff --git a/opencodeblocks/blocks/codeblock.py b/opencodeblocks/blocks/codeblock.py
index ae8c9fc1..27395cea 100644
--- a/opencodeblocks/blocks/codeblock.py
+++ b/opencodeblocks/blocks/codeblock.py
@@ -82,14 +82,16 @@ def init_run_button(self):
"""Initialize the run button"""
run_button = QPushButton(">", self.root)
run_button.move(int(self.edge_size), int(self.edge_size / 2))
- run_button.setFixedSize(int(3 * self.edge_size), int(3 * self.edge_size))
+ run_button.setFixedSize(int(3 * self.edge_size),
+ int(3 * self.edge_size))
run_button.clicked.connect(self.run_left)
return run_button
def init_run_all_button(self):
"""Initialize the run all button"""
run_all_button = QPushButton(">>", self.root)
- run_all_button.setFixedSize(int(3 * self.edge_size), int(3 * self.edge_size))
+ run_all_button.setFixedSize(
+ int(3 * self.edge_size), int(3 * self.edge_size))
run_all_button.clicked.connect(self.run_right)
run_all_button.raise_()
@@ -228,6 +230,8 @@ def stdout(self, value: str):
if hasattr(self, "output_panel"):
if value.startswith(""):
display_text = self.b64_to_html(value[5:])
+ elif value.startswith("