Skip to content

Commit

Permalink
chore: reformat existing Python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanstraten committed Dec 7, 2022
1 parent 886adf5 commit 4d6aeb8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions site/docs/extensions/generate_function_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,10 @@ def write_markdown(file_obj: dict, file_name: str) -> None:
option_names_list.append(option_name)
options_list.append(choices)
else:
raise Exception(f"Unrecognized argument found in "
f"{file_name}:{function_name}")
raise Exception(
f"Unrecognized argument found in "
f"{file_name}:{function_name}"
)

opts = impl["options"] if "options" in impl else {}
for opt_name, opt in opts.items():
Expand Down

0 comments on commit 4d6aeb8

Please sign in to comment.