summaryrefslogtreecommitdiff
path: root/redis/backoff.py
diff options
context:
space:
mode:
authorAnas <anas.el.amraoui@live.com>2021-11-30 18:05:51 +0200
committerGitHub <noreply@github.com>2021-11-30 18:05:51 +0200
commitb94e230b17d08e6c89d134e933c706256b79bc4a (patch)
tree993bd7565169229326b810b66939587431ab9dc6 /redis/backoff.py
parent368a25f9d163d784a8896f1c087582405e98e006 (diff)
downloadredis-py-b94e230b17d08e6c89d134e933c706256b79bc4a.tar.gz
Added black and isort (#1734)
Diffstat (limited to 'redis/backoff.py')
-rw-r--r--redis/backoff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis/backoff.py b/redis/backoff.py
index 9162778..cbb4e73 100644
--- a/redis/backoff.py
+++ b/redis/backoff.py
@@ -1,5 +1,5 @@
-from abc import ABC, abstractmethod
import random
+from abc import ABC, abstractmethod
class AbstractBackoff(ABC):