Skip to content

Commit efcb00b

Browse files
authored
[OMCParser] fix mypy warnings (#290)
1 parent 87b0a38 commit efcb00b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

OMPython/OMParser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
"""
3434

3535
import sys
36+
from typing import Dict, Any
3637

37-
result = dict()
38+
result: Dict[str, Any] = dict()
3839

3940
inner_sets = []
4041
next_set_list = []

0 commit comments

Comments
 (0)