mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-05-03 21:24:49 +00:00
fix(eav): update ClassVar type hint for Python 3.8 compatibility
This commit is contained in:
parent
e52e0e175b
commit
88b078ad60
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ from eav.models import Attribute, EnumGroup, EnumValue, Value
|
|||
|
||||
_FIELDSET_TYPE = List[Union[str, Dict[str, Any]]] # type: ignore[misc]
|
||||
|
||||
some_attribute = ClassVar[dict[str, str]]
|
||||
some_attribute = ClassVar[Dict[str, str]]
|
||||
|
||||
|
||||
class BaseEntityAdmin(ModelAdmin):
|
||||
|
|
|
|||
Loading…
Reference in a new issue