diff --git a/graphene/types/base.py b/graphene/types/base.py index f6cf682d..04fccb73 100644 --- a/graphene/types/base.py +++ b/graphene/types/base.py @@ -1,8 +1,6 @@ from ..utils.subclass_with_meta import SubclassWithMeta from ..utils.trim_docstring import trim_docstring -from typing import Type - class BaseOptions: name = None # type: str diff --git a/graphene/types/scalars.py b/graphene/types/scalars.py index d3c0272b..09958ef1 100644 --- a/graphene/types/scalars.py +++ b/graphene/types/scalars.py @@ -3,8 +3,6 @@ from graphql.language.ast import BooleanValue, FloatValue, IntValue, StringValue from .base import BaseOptions, BaseType from .unmountedtype import UnmountedType -from typing import Any - class ScalarOptions(BaseOptions): pass