isort: don't skip stdlib/venv (#8607)

This commit is contained in:
Alex Waygood
2022-08-24 23:48:27 +01:00
committed by GitHub
parent 15f74295d2
commit 0f1d1f16b4
2 changed files with 2 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ skip_magic_trailing_comma = true
profile = "black"
combine_as_imports = true
line_length = 130
skip = [".git", ".github", ".venv"]
skip_glob = "*_pb2.pyi"
extra_standard_library = [
"typing_extensions",

View File

@@ -1,6 +1,6 @@
from collections.abc import Sequence
import sys
from _typeshed import StrOrBytesPath
from collections.abc import Sequence
from types import SimpleNamespace
if sys.version_info >= (3, 9):