Skip to content

Commit 1f4fe1f

Browse files
committed
[OMParser] cleanup usage of Dict
1 parent 93b7bac commit 1f4fe1f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

OMPython/OMParser.py

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

3535
import sys
36-
from typing import Dict, Any
36+
from typing import Any
3737

38-
result: Dict[str, Any] = dict()
38+
result: dict[str, Any] = {}
3939

4040
inner_sets = []
4141
next_set_list = []

0 commit comments

Comments
 (0)