From f46e0bef30373a1700faea9f4d62b1c4a101cf66 Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Tue, 11 Feb 2025 11:29:58 -0500 Subject: [PATCH] Use double quotes --- lib/nexrad/station.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nexrad/station.py b/lib/nexrad/station.py index d4383da..e50a029 100644 --- a/lib/nexrad/station.py +++ b/lib/nexrad/station.py @@ -28,7 +28,7 @@ def parse(text: str): match = RE_PARSE.match(text) if match is None: - raise Exception('Invalid coordinates \'%s\'' % text) + raise Exception("Invalid coordinates '%s'" % text) sign_lat = -1 if match[2] == 'S' else 1 sign_lon = 1 if match[4] == 'E' else -1