Skip to content

Commit bde041e

Browse files
committed
Got rid of redirect
1 parent a7645dd commit bde041e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

interpreter/core/utils/telemetry.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ def send_telemetry(event_name, properties=None):
5959
"properties": properties,
6060
"distinct_id": user_id,
6161
}
62-
response = requests.post(url, headers=headers, data=json.dumps(data))
63-
except BaseException as e:
64-
print("Exception", e)
62+
requests.post(url, headers=headers, data=json.dumps(data))
63+
except:
64+
pass

0 commit comments

Comments
 (0)