mirror of
https://github.com/apache/superset.git
synced 2026-04-19 16:14:52 +00:00
chore: Ensure Mixins are ordered according to the MRO (#26288)
This commit is contained in:
@@ -24,7 +24,7 @@ from superset.models.helpers import AuditMixinNullable, ImportExportMixin
|
||||
VALUE_MAX_SIZE = 2**24 - 1
|
||||
|
||||
|
||||
class KeyValueEntry(Model, AuditMixinNullable, ImportExportMixin):
|
||||
class KeyValueEntry(AuditMixinNullable, ImportExportMixin, Model):
|
||||
"""Key value store entity"""
|
||||
|
||||
__tablename__ = "key_value"
|
||||
|
||||
Reference in New Issue
Block a user