diff --git a/pyproject.toml b/pyproject.toml index 5f76ae22e..73161bff3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", diff --git a/stdlib/venv/__init__.pyi b/stdlib/venv/__init__.pyi index 6afe328ac..2e34aed4c 100644 --- a/stdlib/venv/__init__.pyi +++ b/stdlib/venv/__init__.pyi @@ -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):