Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/teradata_mcp_server/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ def _exec(*args, **kwargs):

_exec.__name__ = getattr(func, "__name__", "wrapped_tool")
_exec.__signature__ = new_sig
_exec.__doc__ = func.__doc__
if annotations:
_exec.__annotations__ = annotations
return _exec
Expand Down