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:
overkill 2020-09-13 22:43:16 -04:00 committed by GitHub
parent 9b08fbefe5
commit 633e5d8503
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: