graphene-django/graphene_django/__init__.py
Hugo Rodger-Brown 5da636e953
Replace force_text with force_str
force_text has been deprecated in Django4
2021-12-11 12:02:25 +00:00

12 lines
237 B
Python

from .fields import DjangoConnectionField, DjangoListField
from .types import DjangoObjectType
__version__ = "2.14.0-django4"
__all__ = [
"__version__",
"DjangoObjectType",
"DjangoListField",
"DjangoConnectionField",
]