aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pathod/utils.py')
-rw-r--r--pathod/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pathod/utils.py b/pathod/utils.py
index 11b1dccd..4ef85439 100644
--- a/pathod/utils.py
+++ b/pathod/utils.py
@@ -11,7 +11,7 @@ class MemBool:
"""
def __init__(self) -> None:
- self.v = None # type: typing.Optional[bool]
+ self.v: typing.Optional[bool] = None
def __call__(self, v: bool) -> bool:
self.v = v