From 6a843866a0dcb8506fbfa9f5b7a9139f68eb7411 Mon Sep 17 00:00:00 2001 From: Lipu Fei Date: Thu, 18 Jul 2019 11:57:05 +0200 Subject: [PATCH] Fix code style CURA-6651 --- cura/PrinterOutput/Peripheral.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/PrinterOutput/Peripheral.py b/cura/PrinterOutput/Peripheral.py index 93178ba6d1..2693b82c36 100644 --- a/cura/PrinterOutput/Peripheral.py +++ b/cura/PrinterOutput/Peripheral.py @@ -11,6 +11,6 @@ class Peripheral: ## Constructs the peripheral. # \param type A unique ID for the type of peripheral. # \param name A human-readable name for the peripheral. - def __init__(self, peripheral_type: str, name: str): + def __init__(self, peripheral_type: str, name: str) -> None: self.type = peripheral_type self.name = name