diff options
| author | Scott Gasch <[email protected]> | 2021-07-29 09:11:05 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2021-07-29 09:11:05 -0700 |
| commit | a08ca309cb5bd7971210a9247a38c9bbe376a6e6 (patch) | |
| tree | 879e0ee5403d5ede0658db5ed6e4705c86208f9c /type/money.py | |
| parent | 4faa994d32223c8d560d9dad0ca90a3f7eb10d6a (diff) | |
Lockfile custom command, fixup minor things.
Diffstat (limited to 'type/money.py')
| -rw-r--r-- | type/money.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/type/money.py b/type/money.py index c77a938..290c2c8 100644 --- a/type/money.py +++ b/type/money.py @@ -17,7 +17,7 @@ class Money(object): def __init__ ( self, - amount: Decimal = Decimal("0.0"), + amount: Decimal = Decimal("0"), currency: str = 'USD', *, strict_mode = False @@ -211,7 +211,7 @@ class Money(object): amount = Decimal(chunk) elif Money.CURRENCY_RE.match(chunk) is not None: currency = chunk - except: + except Exception: pass if amount is not None and currency is not None: return (amount, currency) |
