Skip to content

Commit

Permalink
use correct currency in _get_url_params_areas()
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter committed Oct 16, 2024
1 parent 99d3295 commit 4cdb9b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nordpool/elspot.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def _get_url_params_areas(self, data_type, end_date=None, areas=None):

api_url = f"{self.API_URL}/{endpoint}"
params = {
"currency": "EUR",
"currency": self.currency,
"market": "DayAhead",
"deliveryArea": ",".join(areas),
}
Expand Down

0 comments on commit 4cdb9b6

Please sign in to comment.