Run pycln as a pre-commit hook in CI (#8304)

This commit is contained in:
Alex Waygood
2022-07-18 08:27:28 +01:00
committed by GitHub
parent 64359528fc
commit 35616b439f
6 changed files with 14 additions and 6 deletions

View File

@@ -6,7 +6,9 @@ from os import stat_result
from typing import Any, overload
from typing_extensions import TypeAlias
from . import ospath as path
from . import ospath
path = ospath
_FdOrAnyPath: TypeAlias = int | StrOrBytesPath