From a21f5630d946c206a8d712edab716559bcd78820 Mon Sep 17 00:00:00 2001 From: Tom Weininger Date: Thu, 29 Sep 2022 10:45:05 +0200 Subject: [PATCH] Fix new pylint warnings See pylint warnings in [1]. Related to fix [2]. [1] https://3a55ed6dd892f28b78e8-5067ad0e5cf1f9e6b3e5798c03f452f6.ssl.cf2.rackcdn.com/859811/1/check/openstack-tox-pep8/9907a0a/job-output.txt [2] https://review.opendev.org/c/openstack/octavia-lib/+/847036 Change-Id: Ife16b3bc5d1153a5c6112fa10a666947e269ef91 (cherry picked from commit 89844bba8e7a944b4c373f3850482b36310fd66a) (cherry picked from commit 67af9896634195a28857a02e4a22970a86469706)(cherry picked from commit 1dff235cdd17342aca9dd065b0199a60e2d1c127) (cherry picked from commit 831b54e9d5d3acf9e28499fdfa4a244313b1b976) --- .pylintrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.pylintrc b/.pylintrc index 4074a26..f7944d5 100644 --- a/.pylintrc +++ b/.pylintrc @@ -20,11 +20,9 @@ disable= anomalous-backslash-in-string, arguments-differ, attribute-defined-outside-init, - bad-builtin, broad-except, fixme, global-statement, - no-init, pointless-string-statement, protected-access, redefined-builtin, @@ -35,14 +33,11 @@ disable= unused-variable, useless-super-delegation, # "C" Coding convention violations - bad-continuation, invalid-name, line-too-long, missing-docstring, # "R" Refactor recommendations duplicate-code, - interface-not-implemented, - no-self-use, too-few-public-methods, too-many-ancestors, too-many-arguments,