From 69b7231776dc42c87abad33430c66e7b302bf00c Mon Sep 17 00:00:00 2001 From: Nathaniel Manista Date: Fri, 21 Jul 2017 03:18:11 +0000 Subject: gRPC Python test infrastructure (The time-related first part of it, anyway.) --- .pylintrc | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 8447821b4e..05b4e685fb 100644 --- a/.pylintrc +++ b/.pylintrc @@ -41,6 +41,11 @@ disable= # NOTE(nathaniel): We don't write doc strings for most private code # elements. missing-docstring, + # NOTE(nathaniel): In numeric comparisons it is better to have the + # lesser (or lesser-or-equal-to) quantity on the left when the + # expression is true than it is to worry about which is an identifier + # and which a literal value. + misplaced-comparison-constant, # NOTE(nathaniel): Our completely abstract interface classes don't have # constructors. no-init, -- cgit v1.2.3