diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-31 10:09:41 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-01-31 10:09:41 -0500 |
commit | a035bde3320a501720ae722dc6b54fe7ff5c8647 (patch) | |
tree | c1e26739a9b464067fa17284d63ef91def0e623c | |
parent | 2faae252d853572cf7403528075461569ac137d1 (diff) | |
download | python-coveragepy-git-a035bde3320a501720ae722dc6b54fe7ff5c8647.tar.gz |
build: quiet a silly pylint warning
It's good in tests to use `assert "expected" == actual()`, so why is
pylint all up in my grill about it?
-rw-r--r-- | pylintrc | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -66,6 +66,7 @@ disable= global-statement, broad-except, no-else-return, + misplaced-comparison-constant, # Messages that may be silly: no-self-use, no-member, |