You've already forked godot
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user