Skip to content

Commit

Permalink
Merge pull request #209 from gjohansson-ST/gj-20241122-8
Browse files Browse the repository at this point in the history
bool to string on deleted
  • Loading branch information
gjohansson-ST authored Nov 22, 2024
2 parents 55b1fcb + c049c22 commit f4cc602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pytrafikverket/trafikverket_weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def async_search_weather_stations(
["Name" "Id"],
[
FieldFilter(FilterOperation.LIKE, "Name", location_name),
FieldFilter(FilterOperation.EQUAL, "Deleted", False),
FieldFilter(FilterOperation.EQUAL, "Deleted", "false"),
],
)
if len(weather_stations) == 0:
Expand Down

0 comments on commit f4cc602

Please sign in to comment.