1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Dont use equality operators with None singleton in python files

This commit is contained in:
lupoDharkael
2018-10-27 01:18:15 +02:00
parent 970b58148f
commit edcca5f7ad
9 changed files with 15 additions and 15 deletions

View File

@@ -17,7 +17,7 @@ def can_build():
# building natively on windows!
if (os.getenv("VSINSTALLDIR")):
if (os.getenv("ANGLE_SRC_PATH") == None):
if (os.getenv("ANGLE_SRC_PATH") is None):
return False
return True