commit 22bd893388ce662d70b9a11ce7955ab13f93c8b2 parent 015bea89bc268068ffe53acaad372cdb010d67c5 Author: Beau <cbeauhilton@gmail.com> Date: Mon, 27 Sep 2021 18:14:06 -0500 horizontal scrolling is bad Diffstat:
M | posts/geocheatcode.md | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/posts/geocheatcode.md b/posts/geocheatcode.md @@ -98,7 +98,10 @@ def google_lat_lon(query: str): return lat, lon -query = "something whose latitude and longitude you would like to know, maybe VUMC Internal Medicine" +extraneous = "something whose latitude and longitude you would like to know, maybe" +relevant = "VUMC Internal Medicine" + +query = extraneous + relevant lat, lon = google_lat_lon(query)