From cb5abc05e58414d4caecc71ca77ef67815f34700 Mon Sep 17 00:00:00 2001 From: Elara6331 Date: Tue, 4 Jun 2024 15:17:24 -0700 Subject: [PATCH] Remove debug code --- weather.go | 1 - 1 file changed, 1 deletion(-) diff --git a/weather.go b/weather.go index d072bdc..19d66f5 100644 --- a/weather.go +++ b/weather.go @@ -155,7 +155,6 @@ func initWeather(ctx context.Context, wg WaitGroup, dev *infinitime.Device) erro func getLocation(ctx context.Context, loc string) (lat, lon float64, err error) { // Create request URL and perform GET request reqURL := fmt.Sprintf("https://nominatim.openstreetmap.org/search.php?q=%s&format=jsonv2", url.QueryEscape(loc)) - println(reqURL) req, err := http.NewRequestWithContext(ctx, http.MethodGet, reqURL, nil) if err != nil { return