Fix double quotes

This commit is contained in:
Erik Montnemery 2020-08-17 22:21:34 +02:00 committed by GitHub
parent 1f3d56b356
commit 7002d351a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ def zsplit(s: str) -> List[str]:
def check_executables(paths: List[str]) -> int:
if (
sys.platform == "win32" or "microsoft" in platform.uname()[3].lower()
sys.platform == 'win32' or 'microsoft' in platform.uname()[3].lower()
): # pragma: win32 cover
return _check_git_filemode(paths)
else: # pragma: win32 no cover