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

@ -122,6 +122,6 @@ class _ObjectOrder:
# \param order List of indices in which to print objects, ordered by printing
# order.
# \param todo: List of indices which are not yet inserted into the order list.
def __init__(self, order: List[SceneNode], todo: List[SceneNode]):
def __init__(self, order: List[SceneNode], todo: List[SceneNode]) -> None:
self.order = order
self.todo = todo