From 56726cf929e23ed6f35e5e66b8a033c2a178c7f2 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Mon, 2 Oct 2023 20:10:23 +0200 Subject: [PATCH] Fixed mypy warning. --- pyDummy/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyDummy/__init__.py b/pyDummy/__init__.py index f5bf0e0..83a8d41 100644 --- a/pyDummy/__init__.py +++ b/pyDummy/__init__.py @@ -43,7 +43,7 @@ from pyTooling.Decorators import export class Application: _value: int - def __init__(self): + def __init__(self) -> None: self._value = 1 @property