Skip to content

Commit

Permalink
Test modified docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeichikawasalesforce committed Nov 21, 2024
1 parent b74ecc4 commit 16e1f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabpy/tabpy_tools/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def _gen_endpoint(self, name, obj, description, version=1, schema=None, is_publi
description = obj.__doc__.strip() or "" if isinstance(obj.__doc__, str) else ""

endpoint_object = CustomQueryObject(query=obj, description=description,)
docstring = inspect.getdoc(obj) or "-- no docstring found in query function --"
docstring = "-- no docstring found in query function --"

return {
"name": name,
Expand Down

0 comments on commit 16e1f25

Please sign in to comment.