Skip to content

Commit e40e854

Browse files
committed
Fixed compatibility of is_dict_available with 3.8-3.11
1 parent 32118cc commit e40e854

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

typed_descriptors/base.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from abc import abstractmethod
1010
from collections.abc import Container, Iterable
1111
import sys
12-
from types import get_original_bases
1312
from typing import (
1413
Any,
1514
Literal,
@@ -23,7 +22,7 @@
2322
overload,
2423
runtime_checkable,
2524
)
26-
from typing_extensions import Self
25+
from typing_extensions import Self, get_original_bases
2726
from typing_validation import can_validate, validate
2827

2928
def is_dict_available(cls: Any) -> bool:

0 commit comments

Comments
 (0)