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

@ -11,7 +11,7 @@ if TYPE_CHECKING:
class SimulationViewProxy(QObject):
def __init__(self, simulation_view: "SimulationView", parent=None):
def __init__(self, simulation_view: "SimulationView", parent=None) -> None:
super().__init__(parent)
self._simulation_view = simulation_view
self._current_layer = 0