Skip to content

Commit

Permalink
docs: fix build_doc missing an f string indicator
Browse files Browse the repository at this point in the history
  • Loading branch information
tazlin committed Jan 13, 2024
1 parent 7343d60 commit 4732ee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/build_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def api_to_sdk_map_create_markdown() -> None:
for http_status_code, _sdk_response_type in http_status_code_map.items():
f.write(
f"| {api_endpoint} | {http_status_code} | "
"[{sdk_response_type.split('.')[-1]}][{sdk_response_type}] |\n",
f"[{_sdk_response_type.split('.')[-1]}][{_sdk_response_type}] |\n",
)


Expand Down

0 comments on commit 4732ee4

Please sign in to comment.