Skip to content

Commit 01d22c2

Browse files
committed
Update evaluate.py
1 parent fe7b77a commit 01d22c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kyu_2/evaluate_mathematical_expression/evaluate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def calc(string: str) -> float:
189189
:param string: str
190190
:return: float
191191
"""
192-
string: str = normalize_string(string)
192+
string = normalize_string(string)
193193
string = ''.join(string.split('+'))
194194
strings: list = string.split()
195195
string = process_brackets(strings)

0 commit comments

Comments
 (0)