Teach isort that imports from utils are first-party imports (#9500)

This commit is contained in:
Alex Waygood
2023-01-11 16:25:32 +00:00
committed by GitHub
parent b8f337a452
commit ab1921a737
6 changed files with 7 additions and 1 deletions

View File

@@ -19,10 +19,11 @@ import traceback
from collections.abc import Iterable, Sequence
import pkg_resources
import utils
from pytype import config as pytype_config, load_pytd # type: ignore[import]
from pytype.imports import typeshed # type: ignore[import]
import utils
TYPESHED_SUBDIRS = ["stdlib", "stubs"]
TYPESHED_HOME = "TYPESHED_HOME"
_LOADERS = {}