fix from flake8

This commit is contained in:
Wong Chun Hong 2023-08-30 00:35:15 +01:00
parent 0f4fd4ea50
commit 9eccae70b6
2 changed files with 0 additions and 4 deletions

View File

@ -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

View File

@ -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