From 7af4aaa8ecc1d446d945a1c94099496f309bbd87 Mon Sep 17 00:00:00 2001 From: Gregory Danielson Date: Sun, 1 Nov 2020 16:30:00 -0600 Subject: [PATCH] Correct docstring for get_location --- lib/location.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/location.py b/lib/location.py index c49d7d1..bcc9d71 100644 --- a/lib/location.py +++ b/lib/location.py @@ -185,7 +185,7 @@ def workaround(city, region, country): def get_location(ip_addr): """ - Return location pair (CITY, COUNTRY) for `ip_addr` + Return location triple (CITY, REGION, COUNTRY) for `ip_addr` """ for method in IPLOCATION_ORDER: if method == 'geoip':