Skip to content

Commit 142a818

Browse files
committed
remove f-string
1 parent 609fa1d commit 142a818

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stac_utils/mailchimp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ def normalize_string(s: Any) -> str:
384384

385385
# Validate required fields
386386
if not (addr1 and city and state and zip):
387-
raise ValueError(f"Address missing required fields")
387+
raise ValueError("Address missing required fields")
388388

389389
# Build final payload: include optionals only if non-empty
390390
val_formatted = {"addr1": addr1, "city": city, "state": state, "zip": zip}

0 commit comments

Comments
 (0)