M1-Survey-Engine/source/survey/Empty.py
2023-12-21 16:46:53 +01:00

10 lines
256 B
Python

from typing import Any
from PyQt6.QtCore import pyqtSignal
from survey.base import BaseSurvey
class Empty(BaseSurvey):
@classmethod
def from_dict(cls, data: dict[str, Any], signals: dict[str, pyqtSignal]) -> "BaseSurvey":
return Empty()