summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-01-31 10:09:41 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-01-31 10:09:41 -0500
commita035bde3320a501720ae722dc6b54fe7ff5c8647 (patch)
treec1e26739a9b464067fa17284d63ef91def0e623c
parent2faae252d853572cf7403528075461569ac137d1 (diff)
downloadpython-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--pylintrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylintrc b/pylintrc
index cfe67f96..c55b8982 100644
--- a/pylintrc
+++ b/pylintrc
@@ -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,