Skip to content

Commit

Permalink
Strip whitespace in alert regions
Browse files Browse the repository at this point in the history
  • Loading branch information
cloneofghosts authored Oct 18, 2024
1 parent 5b03b17 commit 59d87db
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 59d87db

Please sign in to comment.