Fix force_str deprecation warning

This commit is contained in:
Ilya Zhelyabuzhsky 2020-01-28 12:19:26 +05:00
parent 62ecbae614
commit 023f3a2289

View File

@ -1,6 +1,6 @@
from collections import OrderedDict from collections import OrderedDict
from django.db import models from django.db import models
from django.utils.encoding import force_text from django.utils.encoding import force_str
from graphene import ( from graphene import (
ID, ID,
@ -30,7 +30,7 @@ singledispatch = import_single_dispatch()
def convert_choice_name(name): def convert_choice_name(name):
name = to_const(force_text(name)) name = to_const(force_str(name))
try: try:
assert_valid_name(name) assert_valid_name(name)
except AssertionError: except AssertionError: