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 0e5d1c8 commit 2495250Copy full SHA for 2495250
mypy_boto3_builder/utils/strings.py
@@ -89,6 +89,8 @@ def get_short_docstring(doc: str) -> str:
89
result_str = AWS_LINK_RE.sub(r"[\g<1>](https://\g<2>)", result_str)
90
# FIXME: temporary fix for pca-connector-ad service
91
result_str = result_str.replace("https\\:", "https:")
92
+ # FIXME: temporary fix for neptunedata service
93
+ result_str = result_str.replace("neptune-db\\:", "neptune-db:")
94
95
return textwrap(result_str, width=80)
96
0 commit comments