mirror of
https://github.com/graphql-python/graphene-django.git
synced 2024-11-22 17:47:12 +03:00
Fix import on python 2
This commit is contained in:
parent
dc86e4e9a1
commit
2fd3cb032c
|
@ -1,10 +1,12 @@
|
|||
from functools import singledispatch
|
||||
|
||||
from django.core.exceptions import ImproperlyConfigured
|
||||
from rest_framework import serializers
|
||||
|
||||
import graphene
|
||||
|
||||
from ..utils import import_single_dispatch
|
||||
|
||||
singledispatch = import_single_dispatch()
|
||||
|
||||
|
||||
@singledispatch
|
||||
def convert_serializer_field(field):
|
||||
|
@ -53,5 +55,3 @@ def convert_serializer_field_to_bool(field):
|
|||
@required_if_input_and_required
|
||||
def convert_serializer_field_to_float(field):
|
||||
return graphene.Float
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user