1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
5c29ea63da 🤖 Bumped version to 0.1.55
Some checks failed
Package Python / Package-Python-And-Publish (push) Successful in 25s
Python Ruff Code Quality / ruff (push) Failing after 22s
Run Python tests (through Pytest) / Test (push) Failing after 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-05-28 00:18:24 +02:00
b656ae1142 Reduce log level 2025-05-27 23:59:44 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
__version__ = '0.1.54'
__version__ = '0.1.55'

View File

@ -106,7 +106,7 @@ def parse_price(text: str, default_currency: Asset) -> AssetAmount | None:
elif m := (RE_KR_AMOUNT.fullmatch(text) or RE_AMOUNT_SUFFIX_KR.fullmatch(text)):
code, amount_text = 'DKK', m.group('amount')
else:
logger.warning('Unknown format: %s', text)
logger.debug('Unknown format: %s', text)
return None
currency = (