From d3da705f501faeae96baf5d94e1f291c741c118e Mon Sep 17 00:00:00 2001 From: Shoham Elias Date: Wed, 11 Sep 2024 18:13:55 +0000 Subject: [PATCH] core Signed-off-by: Shoham Elias --- python/python/glide/async_commands/core.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/python/python/glide/async_commands/core.py b/python/python/glide/async_commands/core.py index 1f4e0b71e9..c75065941c 100644 --- a/python/python/glide/async_commands/core.py +++ b/python/python/glide/async_commands/core.py @@ -5405,7 +5405,10 @@ async def script_show(self, sha1: TEncodable) -> bytes: Returns: bytes: The original source code of the script, if present in the cache. - Examples: + Raises: + RequestError: If the script is not found in the cache. + + Example: >>> await client.script_show(script.get_hash()) b"return { KEYS[1], ARGV[1] }"