WIP: Multi-printers #32

Draft
n07070 wants to merge 25 commits from multi-printers into master
Showing only changes of commit ef613b3c10 - Show all commits

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