Skip to content

Commit 6c74ec7

Browse files
committed
add intermediate value for the result before returning it - simpler debugging
1 parent 1e28d06 commit 6c74ec7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

OMPython/OMParser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -859,4 +859,5 @@ def check_for_values(parsed: OMParserData, string: str):
859859

860860
def om_parser_basic(string: str):
861861
parsed = OMParserData()
862-
return check_for_values(parsed=parsed, string=string)
862+
parsed_str = check_for_values(parsed=parsed, string=string)
863+
return parsed_str

0 commit comments

Comments
 (0)