mirror of
https://github.com/jazzband/django-eav2.git
synced 2026-03-16 22:40:26 +00:00
7 lines
141 B
Python
7 lines
141 B
Python
try:
|
|
from typing import Final
|
|
except ImportError:
|
|
from typing_extensions import Final # noqa: UP035
|
|
|
|
|
|
CHARFIELD_LENGTH: Final = 100
|