We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ac289a commit 79e5f47Copy full SHA for 79e5f47
jupyter_sphinx/execute.py
@@ -186,7 +186,7 @@ def apply(self):
186
if output["output_type"] == "stream" and output["name"] == "stderr"
187
]
188
if stderr and not node.attributes["stderr"]:
189
- js.logger.warning("Cell printed to stderr:\n{}".format(stderr[0]["text"]))
+ js.logger.warning(f"Cell printed to stderr:\n{stderr[0]['text']}")
190
191
# Insert input/output into placeholders for non-executed cells
192
for node, cell in zip(nodes, notebook.cells):
0 commit comments