Skip to content

Commit

Permalink
Merge pull request #10 from Pirate-Weather/location-name-fix
Browse files Browse the repository at this point in the history
Strip whitespace in alert regions
  • Loading branch information
cloneofghosts authored Oct 24, 2024
2 parents 5228fb9 + 59d87db commit 6961454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion responseECS_LMDB2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2549,7 +2549,7 @@ def PW_Forecast(

alertDict = {
"title": alertDetails[0],
"regions": alertDetails[2].split(";"),
"regions": alertDetails[2].split(";").strip(),
"severity": alertDetails[5],
"time": int(
(
Expand Down

0 comments on commit 6961454

Please sign in to comment.