Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyin0126 committed Jun 16, 2023
1 parent 98ce5db commit 998296b
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions odxtools/odxtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ def parse_int(value: str) -> int:
return int(value)
except ValueError:
v = float(value)
if not v.is_integer():
raise Exception(f'Value "{v}" is not valid integer')
assert v.is_integer()
return int(v)

Expand Down

0 comments on commit 998296b

Please sign in to comment.