We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70e8ce2 commit 84cdf5dCopy full SHA for 84cdf5d
superset/queries/schemas.py
@@ -17,7 +17,6 @@
17
from typing import List
18
19
from marshmallow import fields, Schema
20
-from marshmallow_sqlalchemy import SQLAlchemyAutoSchema
21
22
from superset.dashboards.schemas import UserSchema
23
from superset.models.sql_lab import Query
@@ -65,5 +64,6 @@ class Meta: # pylint: disable=too-few-public-methods
65
64
load_instance = True
66
include_relationships = True
67
68
- def get_sql_tables(_, obj: Query) -> List[Table]:
+ # pylint: disable=no-self-use
+ def get_sql_tables(self, obj: Query) -> List[Table]:
69
return obj.sql_tables
0 commit comments