diff --git a/instagram_locations/instagram_locations.py b/instagram_locations/instagram_locations.py index 1a03b1c..9c0a9f7 100644 --- a/instagram_locations/instagram_locations.py +++ b/instagram_locations/instagram_locations.py @@ -133,7 +133,6 @@ def get_insta_cookies(): while not any([cookie.get("name") == "sessionid" for cookie in cookies]): sleep(1) cookies = driver.get_cookies() - print("; ".join([f"{cookie['name']}={cookie['value'] }"for cookie in cookies])) return "; ".join([f"{cookie['name']}={cookie['value'] }"for cookie in cookies])