From c5e6e3b960372776fd77843b9bf2b33ddb4e62f4 Mon Sep 17 00:00:00 2001 From: Mikhail Sozin Date: Sun, 23 Apr 2023 19:11:04 +0300 Subject: [PATCH] Removed missed print --- instagram_locations/instagram_locations.py | 1 - 1 file changed, 1 deletion(-) 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])