diff options
author | Bob Halley <halley@dnspython.org> | 2017-05-30 12:22:54 -0700 |
---|---|---|
committer | Bob Halley <halley@dnspython.org> | 2017-05-30 12:22:54 -0700 |
commit | 587d019f5fbd98eb7d84bc0bcbf87c2b606a9df5 (patch) | |
tree | 09cb687973dbc0234a1211f0694e4f6b84bf0462 /pylintrc | |
parent | ebc3b75248d86cc5dca79833aabd5062d2292417 (diff) | |
download | dnspython-587d019f5fbd98eb7d84bc0bcbf87c2b606a9df5.tar.gz |
Fix more latest pylint warnings.
Diffstat (limited to 'pylintrc')
-rw-r--r-- | pylintrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -12,7 +12,8 @@ enable= python3 # It's worth looking at len-as-condition for optimization, but it's disabled -# here as it is not a correctness thing. +# here as it is not a correctness thing. Similarly eq-without-hash is +# probably worth improving. disable= R, @@ -38,6 +39,7 @@ disable= wrong-import-order, wrong-import-position, len-as-condition, + eq-without-hash, [REPORTS] |