Skip to content
Merged

fixes #1849

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions data/config/openwb2.service
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# openwb-version:3
# openwb-version:4
[Unit]
Description="Regelung openWB 2.0"
After=mosquitto_local.service

[Service]
User=openwb
Expand All @@ -13,4 +14,3 @@ TimeoutStartSec=900

[Install]
WantedBy=multi-user.target
After=mosquitto_local.service
4 changes: 2 additions & 2 deletions data/config/openwbRemoteSupport.service
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# openwb-version:2
# openwb-version:3
[Unit]
Description="Remote Support Handler openWB 2.0"
After=mosquitto_local.service

[Service]
User=openwb
Expand All @@ -10,4 +11,3 @@ Restart=always

[Install]
WantedBy=multi-user.target
After=mosquitto_local.service
3 changes: 1 addition & 2 deletions packages/modules/electricity_tariffs/energycharts/config.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

class EnergyChartsTariffConfiguration:
def __init__(self, country: str = 'de', surcharge: float = 0):
def __init__(self, country: str = "DE-LU", surcharge: float = 0):
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wirklich Luxemburg?

self.country = country
self.surcharge = surcharge

Expand Down