Skip to content

Commit 0f1d1f1

Browse files
authored
isort: don't skip stdlib/venv (#8607)
1 parent 15f7429 commit 0f1d1f1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ skip_magic_trailing_comma = true
88
profile = "black"
99
combine_as_imports = true
1010
line_length = 130
11+
skip = [".git", ".github", ".venv"]
1112
skip_glob = "*_pb2.pyi"
1213
extra_standard_library = [
1314
"typing_extensions",

stdlib/venv/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
from collections.abc import Sequence
21
import sys
32
from _typeshed import StrOrBytesPath
3+
from collections.abc import Sequence
44
from types import SimpleNamespace
55

66
if sys.version_info >= (3, 9):

0 commit comments

Comments
 (0)