diff options
author | lupoDharkael <izhe@hotmail.es> | 2018-10-27 01:18:15 +0200 |
---|---|---|
committer | lupoDharkael <izhe@hotmail.es> | 2018-10-27 01:18:15 +0200 |
commit | edcca5f7ad2ba92b3e04fb153f7db55c08593469 (patch) | |
tree | 8c29e3f3a2f793e3de3ae77f20c3a2607bf5e0e3 /platform/uwp/detect.py | |
parent | 970b58148f579f741934f64af437d01b985df15d (diff) | |
download | redot-engine-edcca5f7ad2ba92b3e04fb153f7db55c08593469.tar.gz |
Dont use equality operators with None singleton in python files
Diffstat (limited to 'platform/uwp/detect.py')
-rw-r--r-- | platform/uwp/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/detect.py b/platform/uwp/detect.py index 559f23ca5b..f25b9ba9cd 100644 --- a/platform/uwp/detect.py +++ b/platform/uwp/detect.py @@ -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 |