mirror of
https://github.com/electron/electron.git
synced 2026-01-10 07:58:08 -05:00
chore: change == None to is None (#25202)
According to LGTM, this change will improve code efficiency. https://lgtm.com/rules/7900090/
This commit is contained in:
@@ -35,7 +35,7 @@ def main():
|
||||
match = re.search(
|
||||
'^Starting ChromeDriver [0-9]+.[0-9]+.[0-9]+.[0-9]+ .* on port [0-9]+$', output)
|
||||
|
||||
if match == None:
|
||||
if match is None:
|
||||
returncode = 1
|
||||
|
||||
if returncode == 0:
|
||||
|
||||
Reference in New Issue
Block a user