Skip to content

Commit 9f25e97

Browse files
committed
style(docs): format gen_test_case_reference.py
- Apply linter formatting fixes.
1 parent 7bcac4f commit 9f25e97

1 file changed

Lines changed: 3 additions & 8 deletions

File tree

docs/scripts/gen_test_case_reference.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
)
2020
from execution_testing.config import DocsConfig
2121

22-
importlib.reload(
23-
gen_test_doc
24-
) # get changes in plugin to trigger an update for `mkdocs serve`
22+
importlib.reload(gen_test_doc) # get changes in plugin to trigger an update for `mkdocs serve`
2523

2624
TARGET_FORK = DocsConfig().TARGET_FORK
2725
GENERATE_UNTIL_FORK = DocsConfig().GENERATE_UNTIL_FORK
@@ -40,9 +38,7 @@
4038
fast_mode = getenv("FAST_DOCS")
4139
if fast_mode is not None:
4240
if fast_mode.lower() == "true":
43-
print(
44-
"-" * 40, "\nWill generate docs using FAST_DOCS mode.\n" + "-" * 40
45-
)
41+
print("-" * 40, "\nWill generate docs using FAST_DOCS mode.\n" + "-" * 40)
4642
test_arg = "tests/frontier"
4743

4844
args = [
@@ -66,8 +62,7 @@
6662

6763
runner = CliRunner()
6864
logger.info(
69-
f"Generating documentation for test cases until {GENERATE_UNTIL_FORK} as "
70-
f"fill {' '.join(args)}"
65+
f"Generating documentation for test cases until {GENERATE_UNTIL_FORK} as fill {' '.join(args)}"
7166
)
7267
result = runner.invoke(fill, args)
7368
for line in result.output.split("\n"):

0 commit comments

Comments
 (0)