Skip to content

Commit

Permalink
reorg arguments to match python 2.7 fix #41
Browse files Browse the repository at this point in the history
  • Loading branch information
gkorland committed Aug 13, 2020
1 parent 4cf1049 commit 1547fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rejson/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def jsondel(self, name, path=Path.rootPath()):
"""
return self.execute_command('JSON.DEL', name, str_path(path))

def jsonget(self, name, *args, no_escape=False):
def jsonget(self, name, no_escape=False, *args):
"""
Get the object stored as a JSON value at key ``name``
``args`` is zero or more paths, and defaults to root path
Expand Down

0 comments on commit 1547fac

Please sign in to comment.