mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-11 08:47:50 -06:00
STAR-322: Adding return type to init method
This commit is contained in:
parent
64dc73aed3
commit
0467756ed6
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue