mirror of
https://github.com/apache/superset.git
synced 2026-04-17 15:15:20 +00:00
chore: Ensure Mixins are ordered according to the MRO (#26288)
This commit is contained in:
@@ -42,7 +42,7 @@ def dummy_schema() -> "DatabaseParametersSchemaMixin":
|
||||
"""
|
||||
from superset.databases.schemas import DatabaseParametersSchemaMixin
|
||||
|
||||
class DummySchema(Schema, DatabaseParametersSchemaMixin):
|
||||
class DummySchema(DatabaseParametersSchemaMixin, Schema):
|
||||
sqlalchemy_uri = fields.String()
|
||||
|
||||
return DummySchema()
|
||||
|
||||
Reference in New Issue
Block a user