Skip to content
This repository has been archived by the owner on Feb 21, 2023. It is now read-only.

Fix python3.11 duplicate base class error #1415

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES/1409.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix python3.11 duplicate base class error
3 changes: 1 addition & 2 deletions aioredis/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""Core exceptions raised by the Redis client"""
import asyncio
import builtins


Expand All @@ -11,7 +10,7 @@ class ConnectionError(RedisError):
pass


class TimeoutError(asyncio.TimeoutError, builtins.TimeoutError, RedisError):
class TimeoutError(builtins.TimeoutError, RedisError):
pass


Expand Down