From 9eccae70b619d56de82ed6899f05f43da4449625 Mon Sep 17 00:00:00 2001 From: Wong Chun Hong Date: Wed, 30 Aug 2023 00:35:15 +0100 Subject: [PATCH] fix from flake8 --- graphene/types/base.py | 2 -- graphene/types/scalars.py | 2 -- 2 files changed, 4 deletions(-) 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