From 98075fa2cfba47bf767b484c0ca34e262bb9de76 Mon Sep 17 00:00:00 2001 From: izzy lyseggen Date: Wed, 22 Jun 2022 14:52:49 +0100 Subject: [PATCH] fix(metrics): remove unused prop (#192) --- specklepy/logging/metrics.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/specklepy/logging/metrics.py b/specklepy/logging/metrics.py index b5b90ae..272223b 100644 --- a/specklepy/logging/metrics.py +++ b/specklepy/logging/metrics.py @@ -101,7 +101,6 @@ class Singleton(type): class MetricsTracker(metaclass=Singleton): analytics_url = "https://analytics.speckle.systems/track?ip=1" analytics_token = "acd87c5a50b56df91a795e999812a3a4" - user_ip = None last_user = None last_server = None platform = None @@ -114,7 +113,6 @@ class MetricsTracker(metaclass=Singleton): ) self.platform = PLATFORMS.get(sys.platform, "linux") self.sending_thread.start() - self.user_ip = socket.gethostbyname(socket.gethostname()) def set_last_user(self, email: str): if not email: