chore: Ensure Mixins are ordered according to the MRO (#26288)

This commit is contained in:
John Bodley
2023-12-16 14:11:58 +13:00
committed by GitHub
parent 8450cca998
commit aafb54d042
24 changed files with 31 additions and 31 deletions

View File

@@ -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"