remove isort config, flake8 comments

This commit is contained in:
Dulmandakh 2024-06-28 22:10:24 +08:00
parent 9d75a7bcfc
commit d1945bbcf7
3 changed files with 1 additions and 4 deletions

View File

@ -1,2 +0,0 @@
[settings]
known_third_party = graphql,graphql_relay,promise,pytest,pyutils,setuptools,snapshottest,sphinx_graphene_theme

View File

@ -1,4 +1,3 @@
# flake8: noqa
from graphql import GraphQLResolveInfo as ResolveInfo
from .argument import Argument

View File

@ -9,7 +9,7 @@ from collections import namedtuple
from collections.abc import Iterable
from functools import partial
from typing import List # flake8: noqa
from typing import List
Loader = namedtuple("Loader", "key,future")