Models fix: remove ABC from DataMixin

This commit is contained in:
helldh 2026-03-06 17:51:00 +03:00
parent 283b97f3f2
commit a8a4dd94e5
2 changed files with 3 additions and 2 deletions

2
.gitignore vendored
View file

@ -3,3 +3,5 @@
__pycache__
*.pyc
.idea
pyqt6_scaffold.egg-info
dist

View file

@ -1,6 +1,5 @@
# SPDX-License-Identifier: LGPL-3.0-or-later
from abc import ABC
from typing import List, Sequence, Any
from PyQt6.QtGui import QColor, QBrush, QFont
from PyQt6.QtCore import (
@ -11,7 +10,7 @@ from PyQt6.QtCore import (
QVariant
)
class DataMixin(ABC):
class DataMixin:
"""
Mixin for Qt data models providing common data storage and display logic.