From 5c9c7d463b651531bba2faf32873d26ed2e3985c Mon Sep 17 00:00:00 2001 From: syntron Date: Thu, 22 May 2025 20:42:34 +0200 Subject: [PATCH] [OMCParser] fix mypy warnings --- OMPython/OMParser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OMPython/OMParser.py b/OMPython/OMParser.py index 1377fc6a6..7c5fac0e2 100644 --- a/OMPython/OMParser.py +++ b/OMPython/OMParser.py @@ -33,8 +33,9 @@ """ import sys +from typing import Dict, Any -result = dict() +result: Dict[str, Any] = dict() inner_sets = [] next_set_list = []