diff options
author | Utkarsh Gupta <utkarshgupta137@gmail.com> | 2022-05-30 20:05:19 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-30 17:35:19 +0300 |
commit | c54dfa49dda6a7b3389dc230726293af3ffc68a3 (patch) | |
tree | fd972a79a8bef1b29829426c86a7386abb44ba73 /redis/commands/json | |
parent | f704281cf4c1f735c06a13946fcea42fa939e3a5 (diff) | |
download | redis-py-c54dfa49dda6a7b3389dc230726293af3ffc68a3.tar.gz |
update black to 22.3.0 (#2171)
Diffstat (limited to 'redis/commands/json')
-rw-r--r-- | redis/commands/json/__init__.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/redis/commands/json/__init__.py b/redis/commands/json/__init__.py index 39983be..7d55023 100644 --- a/redis/commands/json/__init__.py +++ b/redis/commands/json/__init__.py @@ -19,11 +19,7 @@ class JSON(JSONCommands): """ def __init__( - self, - client, - version=None, - decoder=JSONDecoder(), - encoder=JSONEncoder(), + self, client, version=None, decoder=JSONDecoder(), encoder=JSONEncoder() ): """ Create a client for talking to json. |