Skip to content

Commit dd8d785

Browse files
fixed TypeError
1 parent 93c1ff0 commit dd8d785

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

its_utils/string_math.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
import re
12-
from typing import List, Union
12+
from typing import Dict, List, Union
1313

1414

1515
class StringMath:
@@ -27,7 +27,7 @@ class StringMath:
2727
'''
2828

2929
# define operands
30-
operands: dict[str, int] = {
30+
operands: Dict[str, int] = {
3131
'^': 2,
3232
'*': 1,
3333
'/': 1,

0 commit comments

Comments
 (0)