Fix typing in __init__ methods to appease MYPY

This commit is contained in:
fieldOfView 2020-01-14 21:56:06 +01:00
parent 9f023eb28e
commit 6abf916ced
7 changed files with 7 additions and 7 deletions

View file

@ -35,7 +35,7 @@ class GCodeStep():
Class to store the current value of each G_Code parameter
for any G-Code step
"""
def __init__(self, step, in_relative_movement: bool = False):
def __init__(self, step, in_relative_movement: bool = False) -> None:
self.step = step
self.step_x = 0
self.step_y = 0