diff options
author | clarkzjw <[email protected]> | 2023-02-22 23:51:49 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-02-23 12:07:32 -0800 |
commit | 736ba02520802499c9970afd9d1ee6a537fb2230 (patch) | |
tree | 4a26d357ef482e42f4fe2a77c0ad5418248bcdb1 /foursquare | |
parent | b935ae39c533bfdee7d052acdf939b68833a882a (diff) | |
download | swarm2fediverse-736ba02520802499c9970afd9d1ee6a537fb2230.tar.gz |
bot: set default toot visibility to private
Diffstat (limited to 'foursquare')
-rw-r--r-- | foursquare/poi.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/foursquare/poi.py b/foursquare/poi.py index 45b4fa9..4ff11fb 100644 --- a/foursquare/poi.py +++ b/foursquare/poi.py | |||
@@ -19,7 +19,6 @@ def query_poi(search, latitude, longitude): | |||
19 | locations = list() | 19 | locations = list() |
20 | 20 | ||
21 | url = POI_SEARCH_API_ENDPOINT.format(search, latitude, longitude) | 21 | url = POI_SEARCH_API_ENDPOINT.format(search, latitude, longitude) |
22 | print(url) | ||
23 | response = requests.get(url, headers=headers) | 22 | response = requests.get(url, headers=headers) |
24 | 23 | ||
25 | for poi in json.loads(response.text)["results"]: | 24 | for poi in json.loads(response.text)["results"]: |