From 69055e7c92594e9e060b93891e266ec718a802d6 Mon Sep 17 00:00:00 2001 From: Tom Weininger Date: Tue, 21 Jun 2022 16:53:28 +0200 Subject: [PATCH] Fix new pylint warnings Similar to https://review.opendev.org/c/openstack/octavia/+/845146 Change-Id: I16863135011c37bd90d6b9733e550c2393df187c --- .pylintrc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.pylintrc b/.pylintrc index 2b9e1c3..5a059be 100644 --- a/.pylintrc +++ b/.pylintrc @@ -19,11 +19,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, @@ -34,15 +32,12 @@ disable= unused-variable, useless-super-delegation, # "C" Coding convention violations - bad-continuation, invalid-name, line-too-long, missing-docstring, consider-using-f-string, # "R" Refactor recommendations duplicate-code, - interface-not-implemented, - no-self-use, too-few-public-methods, too-many-ancestors, too-many-arguments,