Remove print, add task Typing

This commit is contained in:
n07070
2026-06-03 23:51:38 +02:00
parent e549cdc64b
commit ef613b3c10

View File

@@ -38,13 +38,11 @@ class PrintTask(ABC):
A print task holds information about what we are looking to print.
"""
def __init__(self, task_type):
def __init__(self, task_type: TaskType):
self.task_id = self._generate_id()
self.task_type = task_type
self.status = "pending" # pending, processing, completed, failed
print("Created a new " + str(self.task_type) + " with ID " + self.task_id)
@abstractmethod
def get_print_data(self):
"""Return data formatted for printer"""