Skip to content

Commit

Permalink
Add a disable for a failure that's only showing up in CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Barrett committed Jun 21, 2020
1 parent 5fad2de commit 8bca4fd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion superset/connectors/sqla/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,9 @@ def lookup_obj(lookup_metric: SqlMetric) -> SqlMetric:
)


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

"""An ORM object for SqlAlchemy table references"""

Expand Down

0 comments on commit 8bca4fd

Please sign in to comment.