From a035bde3320a501720ae722dc6b54fe7ff5c8647 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 31 Jan 2021 10:09:41 -0500 Subject: 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? --- pylintrc | 1 + 1 file changed, 1 insertion(+) 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, -- cgit v1.2.1