Skip to content

Commit 2e26ef8

Browse files
STY: apply ruff format to docs/conf.py
Wrap the long for-loop tuple in StaticJupyterExecute.run to satisfy the 88-char line length, fixing the `ruff format --check` linter failure. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 5dc511b commit 2e26ef8

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

docs/conf.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,13 @@ class StaticJupyterExecute(CodeBlock):
192192
)
193193

194194
def run(self):
195-
for key in ("hide-code", "hide-output", "code-below", "stderr", "raises"):
195+
for key in (
196+
"hide-code",
197+
"hide-output",
198+
"code-below",
199+
"stderr",
200+
"raises",
201+
):
196202
self.options.pop(key, None)
197203
if not self.arguments:
198204
self.arguments = ["python3"]

0 commit comments

Comments
 (0)