Skip to content

Commit

Permalink
Nordpool: fix price conversion (evcc-io#17702)
Browse files Browse the repository at this point in the history
Co-authored-by: Mattias Hermansson <[email protected]>
  • Loading branch information
Millox and Mattias Hermansson authored Dec 12, 2024
1 parent d5f59ba commit 8704d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/definition/tariff/nordpool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ render: |
{
"start": .deliveryStart,
"end": .deliveryEnd,
"price": .entryPerArea.{{ .region }}
"price": .entryPerArea.{{ .region }} / 1000
}
] | tostring
- name: tomorrow
Expand All @@ -73,7 +73,7 @@ render: |
{
"start": .deliveryStart,
"end": .deliveryEnd,
"price": .entryPerArea.{{ .region }}
"price": .entryPerArea.{{ .region }} / 1000
}
] | tostring
{{ include "tariff-base" . }}

0 comments on commit 8704d32

Please sign in to comment.