Fixed mypy warning.

This commit is contained in:
Patrick Lehmann
2023-10-02 20:10:23 +02:00
parent 60967bdde1
commit 56726cf929

View File

@@ -43,7 +43,7 @@ from pyTooling.Decorators import export
class Application:
_value: int
def __init__(self):
def __init__(self) -> None:
self._value = 1
@property