Merge "pylint: ignore access-member-before-definition explicitly"

This commit is contained in:
Zuul 2019-01-15 11:22:29 +00:00 committed by Gerrit Code Review
commit f1fb3d168c
2 changed files with 1 additions and 1 deletions

View File

@ -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,

View File

@ -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 \