diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-08-31 09:32:56 -0700 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2021-08-31 16:28:54 -0400 |
commit | 1fc3d8608d9d278c9faf8ccf6aecf33cc7e92c26 (patch) | |
tree | 069011f64920721a71446c479ff8b8955bd7c6b7 /mesonbuild/mparser.py | |
parent | 9e61b4fe99fad66c9dc7484ab62c34a75dec5b60 (diff) | |
download | meson-1fc3d8608d9d278c9faf8ccf6aecf33cc7e92c26.zip meson-1fc3d8608d9d278c9faf8ccf6aecf33cc7e92c26.tar.gz meson-1fc3d8608d9d278c9faf8ccf6aecf33cc7e92c26.tar.bz2 |
pylint: enable unnecessary-not check
This finds things like
```python
if not x == 1:
```
which should be
```python
if x != 1:
```
Diffstat (limited to 'mesonbuild/mparser.py')
0 files changed, 0 insertions, 0 deletions