STAR-322: Adding return type to init method

This commit is contained in:
Daniel Schiavini 2018-12-11 16:01:52 +01:00
parent 64dc73aed3
commit 0467756ed6

View file

@ -5,7 +5,7 @@ from cura.PrinterOutput.PrinterOutputController import PrinterOutputController
class CloudOutputController(PrinterOutputController): class CloudOutputController(PrinterOutputController):
def __init__(self, output_device: OutputDevice): def __init__(self, output_device: OutputDevice) -> None:
super().__init__(output_device) super().__init__(output_device)
# The cloud connection only supports fetching the printer and queue status and adding a job to the queue. # The cloud connection only supports fetching the printer and queue status and adding a job to the queue.