Skip to content

Commit

Permalink
fix(pylint): Fix master (#16405)
Browse files Browse the repository at this point in the history
Co-authored-by: John Bodley <john.bodley@airbnb.com>
  • Loading branch information
john-bodley and John Bodley committed Aug 23, 2021
1 parent 7e4c940 commit bc4b6f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions superset/connectors/sqla/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,9 @@ def data(self) -> Dict[str, Any]:
)


class SqlaTable(Model, BaseDatasource): # pylint: disable=too-many-public-methods

class SqlaTable( # pylint: disable=too-many-instance-attributes,too-many-public-methods
Model, BaseDatasource
):
"""An ORM object for SqlAlchemy table references"""

type = "table"
Expand Down
2 changes: 1 addition & 1 deletion superset/models/slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
logger = logging.getLogger(__name__)


class Slice( # pylint: disable=too-many-instance-attributes,too-many-public-methods
class Slice( # pylint: disable=too-many-public-methods
Model, AuditMixinNullable, ImportExportMixin
):
"""A slice is essentially a report or a view on data"""
Expand Down

0 comments on commit bc4b6f0

Please sign in to comment.