From 01b8bd60bdf7ef8230dd891a94738bcc0638e290 Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Thu, 25 Jan 2018 22:47:02 +0100 Subject: [PATCH] Add type hinting --- cura/PrinterOutput/PrinterOutputModel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrinterOutput/PrinterOutputModel.py b/cura/PrinterOutput/PrinterOutputModel.py index 02c1f9e489..95e0daf34f 100644 --- a/cura/PrinterOutput/PrinterOutputModel.py +++ b/cura/PrinterOutput/PrinterOutputModel.py @@ -91,7 +91,7 @@ class PrinterOutputModel(QObject): self._controller.homeBed(self) @pyqtSlot(str) - def sendCustomCommand(self, command): + def sendCustomCommand(self, command: str): self._controller.sendCustomCommand(self, command) @pyqtProperty("QVariantList", constant = True)