diff options
author | Eisuke Kawashima <e.kawaschima+github@gmail.com> | 2024-07-20 08:59:56 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-19 16:59:56 -0700 |
commit | 8bc02bf5c6e94489a79c8d924e5d9866fcc18417 (patch) | |
tree | 9e64bc56761f52ead7c2c6039a2f78868d5341b9 /bolt/test | |
parent | 1ee8238f0eab75386522a002c2cbb6146284c0c1 (diff) | |
download | llvm-8bc02bf5c6e94489a79c8d924e5d9866fcc18417.zip llvm-8bc02bf5c6e94489a79c8d924e5d9866fcc18417.tar.gz llvm-8bc02bf5c6e94489a79c8d924e5d9866fcc18417.tar.bz2 |
fix(bolt/**.py): fix comparison to None (#94012)
from PEP8
(https://peps.python.org/pep-0008/#programming-recommendations):
> Comparisons to singletons like None should always be done with is or
is not, never the equality operators.
Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
Diffstat (limited to 'bolt/test')
-rw-r--r-- | bolt/test/perf2bolt/lit.local.cfg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bolt/test/perf2bolt/lit.local.cfg b/bolt/test/perf2bolt/lit.local.cfg index 05f41ff..4ee9ad0 100644 --- a/bolt/test/perf2bolt/lit.local.cfg +++ b/bolt/test/perf2bolt/lit.local.cfg @@ -1,4 +1,4 @@ import shutil -if shutil.which("perf") != None: +if shutil.which("perf") is not None: config.available_features.add("perf")
\ No newline at end of file |