Skip to content

Commit 0a1a1fb

Browse files
committed
fix(server): fix issue with tool discovery
1 parent 34e88a0 commit 0a1a1fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/string.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async def get(key: str) -> Union[str, bytes]:
5555
str: The stored value or an error message.
5656
"""
5757
try:
58-
r = RedisConnectionManager.get_connection()
58+
r: Redis = RedisConnectionManager.get_connection()
5959
value = r.get(key)
6060

6161
if value is None:

0 commit comments

Comments
 (0)