diff --git a/graphene_django/utils/utils.py b/graphene_django/utils/utils.py index 364eff9..5f84a17 100644 --- a/graphene_django/utils/utils.py +++ b/graphene_django/utils/utils.py @@ -111,24 +111,7 @@ def is_valid_django_model(model): def import_single_dispatch(): - try: - from functools import singledispatch - except ImportError: - singledispatch = None - - if not singledispatch: - try: - from singledispatch import singledispatch - except ImportError: - pass - - if not singledispatch: - raise Exception( - "It seems your python version does not include " - "functools.singledispatch. Please install the 'singledispatch' " - "package. More information here: " - "https://pypi.python.org/pypi/singledispatch" - ) + from functools import singledispatch return singledispatch