Skip to content

Commit

Permalink
Resolved pre-commit warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Emmanuel Rondan committed Nov 6, 2024
1 parent 787f643 commit d2366ef
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion price_parser/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def fromstring(
if currency is not None:
currency = currency.strip()
if digit_group_separator is not None and price is not None:
price = price.replace(digit_group_separator, '')
price = price.replace(digit_group_separator, "")
amount_text = extract_price_text(price) if price is not None else None
amount_num = (
parse_number(amount_text, decimal_separator)
Expand Down
28 changes: 14 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)

0 comments on commit d2366ef

Please sign in to comment.