diff options
author | Anas <anas.el.amraoui@live.com> | 2021-11-30 18:05:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-30 18:05:51 +0200 |
commit | b94e230b17d08e6c89d134e933c706256b79bc4a (patch) | |
tree | 993bd7565169229326b810b66939587431ab9dc6 /redis/commands/__init__.py | |
parent | 368a25f9d163d784a8896f1c087582405e98e006 (diff) | |
download | redis-py-b94e230b17d08e6c89d134e933c706256b79bc4a.tar.gz |
Added black and isort (#1734)
Diffstat (limited to 'redis/commands/__init__.py')
-rw-r--r-- | redis/commands/__init__.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/redis/commands/__init__.py b/redis/commands/__init__.py index a4728d0..bc1e78c 100644 --- a/redis/commands/__init__.py +++ b/redis/commands/__init__.py @@ -6,10 +6,10 @@ from .redismodules import RedisModuleCommands from .sentinel import SentinelCommands __all__ = [ - 'ClusterCommands', - 'CommandsParser', - 'CoreCommands', - 'list_or_args', - 'RedisModuleCommands', - 'SentinelCommands' + "ClusterCommands", + "CommandsParser", + "CoreCommands", + "list_or_args", + "RedisModuleCommands", + "SentinelCommands", ] |