diff --git a/graphene/types/base.py b/graphene/types/base.py index fa366a10..fdff106f 100644 --- a/graphene/types/base.py +++ b/graphene/types/base.py @@ -5,8 +5,6 @@ from ..utils.trim_docstring import trim_docstring if six.PY3: from typing import Type -else: - Type = type class BaseOptions(object): diff --git a/graphene/types/scalars.py b/graphene/types/scalars.py index 350e2a97..c5f43787 100644 --- a/graphene/types/scalars.py +++ b/graphene/types/scalars.py @@ -6,8 +6,6 @@ from .unmountedtype import UnmountedType if six.PY3: from typing import Any -else: - Any = object class ScalarOptions(BaseOptions):