From b9cf28253781c3204b39827679ba2159b8fcc8c8 Mon Sep 17 00:00:00 2001 From: DM_ <6091595+x0day@users.noreply.github.com> Date: Mon, 29 Nov 2021 10:16:45 +0800 Subject: [PATCH] Update exceptions.py --- aioredis/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aioredis/exceptions.py b/aioredis/exceptions.py index 4aeba5e68..e4c2ed1e4 100644 --- a/aioredis/exceptions.py +++ b/aioredis/exceptions.py @@ -7,7 +7,7 @@ class RedisError(Exception): pass -class ConnectionError(builtins.ConnectionError, RedisError): +class ConnectionError(RedisError): pass