mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-06 03:56:54 +00:00
Fix double quotes
This commit is contained in:
parent
1f3d56b356
commit
7002d351a0
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ def zsplit(s: str) -> List[str]:
|
||||||
|
|
||||||
def check_executables(paths: List[str]) -> int:
|
def check_executables(paths: List[str]) -> int:
|
||||||
if (
|
if (
|
||||||
sys.platform == "win32" or "microsoft" in platform.uname()[3].lower()
|
sys.platform == 'win32' or 'microsoft' in platform.uname()[3].lower()
|
||||||
): # pragma: win32 cover
|
): # pragma: win32 cover
|
||||||
return _check_git_filemode(paths)
|
return _check_git_filemode(paths)
|
||||||
else: # pragma: win32 no cover
|
else: # pragma: win32 no cover
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue