Skip to content

Commit

Permalink
fix type of mget
Browse files Browse the repository at this point in the history
Signed-off-by: BoazBD <boazbd@amazon.com>
  • Loading branch information
BoazBD committed Oct 23, 2024
1 parent 5a9e9ac commit 844ffc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/python/glide/async_commands/server_modules/json.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ async def mget(
keys: List[TEncodable],
paths: Optional[Union[TEncodable, List[TEncodable]]] = None,
options: Optional[JsonGetOptions] = None,
) -> Optional[List[bytes]]:
) -> Optional[List[Optional[bytes]]]:
"""
Retrieves the JSON values at the specified `paths` stored at multiple `keys`.
Expand Down

0 comments on commit 844ffc3

Please sign in to comment.