Skip to content

Commit a81e1da

Browse files
🐛 fix amount display (#246)
1 parent 62d6006 commit a81e1da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mindee/parsing/standard/amount.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ def __init__(
3939
self._set_position(raw_prediction)
4040

4141
def __str__(self) -> str:
42-
return float_to_string(self.value)
42+
return float_to_string(self.value) if self.value is not None else ""

0 commit comments

Comments
 (0)