Skip to content

Commit a8ffdd3

Browse files
authored
Fix print issue (#17)
1 parent 4efe36f commit a8ffdd3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

iso4217parse/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,6 @@ def by_symbol_match(
217217
List[Currency]: Currency objects found in `value`; filter by country_code.
218218
"""
219219
res: Optional[list[Currency]] = None
220-
print(len(_symbols()))
221220
for symbol, group in _symbols():
222221
symbol_pattern = _symbol_pattern(symbol)
223222
if symbol_pattern.search(value):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22

33
name = "iso4217parse"
4-
version = "0.6.1"
4+
version = "0.6.2"
55
description = "Parse currencies (symbols and codes) from and to ISO4217."
66
authors = ["Tammo Ippen <tammo.ippen@posteo.de>"]
77
license = "MIT"

0 commit comments

Comments
 (0)