diff --git a/.pylintrc b/.pylintrc index d3544aca42..e69af02d0f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -10,7 +10,6 @@ disable= # "I" Informational noise locally-disabled, # "E" Error for important programming issues (likely bugs) - access-member-before-definition, assignment-from-no-return, import-error, logging-too-few-args, diff --git a/horizon/tables/base.py b/horizon/tables/base.py index 2349ab74af..8144c508ec 100644 --- a/horizon/tables/base.py +++ b/horizon/tables/base.py @@ -843,6 +843,7 @@ class Cell(html.HTMLElement): """Gets the status for the column based on the cell's data.""" # Deal with status column mechanics based in this cell's data if hasattr(self, '_status'): + # pylint: disable=access-member-before-definition return self._status if self.column.status or \