Skip to content

Commit

Permalink
0.0.11b1
Browse files Browse the repository at this point in the history
Add the old round back
  • Loading branch information
Hellowlol committed Jan 14, 2023
1 parent e4473a3 commit 779eec4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/nordpool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@


NAME = DOMAIN
VERSION = "0.0.11b0"
VERSION = "0.0.11b1"
ISSUEURL = "https://github.com/custom-components/nordpool/issues"

STARTUP = f"""
Expand Down
2 changes: 1 addition & 1 deletion custom_components/nordpool/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"requirements": [
"nordpool>=0.2"
],
"version": "0.0.11b0"
"version": "0.0.11b1"
}
2 changes: 1 addition & 1 deletion custom_components/nordpool/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def inner(*_, **__):
if self._use_cents:
price = price * _CENT_MULTIPLIER

return round_decimal(price, self._precision)
return round(price, self._precision)

def _update(self):
"""Set attrs"""
Expand Down

0 comments on commit 779eec4

Please sign in to comment.