mirror of
https://github.com/graphql-python/graphene.git
synced 2025-07-16 19:12:21 +03:00
suppress mypy error
This commit is contained in:
parent
9eccae70b6
commit
c439c70a45
|
@ -11,12 +11,12 @@ if MYPY:
|
|||
from typing import Dict, Callable # NOQA
|
||||
|
||||
|
||||
class InputObjectTypeOptions(BaseOptions):
|
||||
class InputObjectTypeOptions(BaseOptions): # type: ignore
|
||||
fields = None # type: Dict[str, InputField]
|
||||
container = None # type: InputObjectTypeContainer
|
||||
|
||||
|
||||
class InputObjectTypeContainer(dict, BaseType):
|
||||
class InputObjectTypeContainer(dict, BaseType): # type: ignore
|
||||
class Meta:
|
||||
abstract = True
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user