We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 517897e commit ddf0b5dCopy full SHA for ddf0b5d
mockredis/script.py
@@ -24,7 +24,7 @@ def __call__(self, keys=[], args=[], client=None):
24
if not client.script_exists(self.sha)[0]:
25
self.sha = client.script_load(self.script)
26
27
- return self._execute_lua(keys, args, client)
+ return self._execute_lua([str(key) for key in keys], [str(arg) for arg in args], client)
28
29
def _execute_lua(self, keys, args, client):
30
"""
0 commit comments