Fix code style

CURA-6651
This commit is contained in:
Lipu Fei 2019-07-18 11:57:05 +02:00
parent d4a683966d
commit 6a843866a0

View file

@ -11,6 +11,6 @@ class Peripheral:
## Constructs the peripheral. ## Constructs the peripheral.
# \param type A unique ID for the type of peripheral. # \param type A unique ID for the type of peripheral.
# \param name A human-readable name for the 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.type = peripheral_type
self.name = name self.name = name