From 17d5ac96553cdd3fc39d9cfb336e4322a638b414 Mon Sep 17 00:00:00 2001 From: Sander Roosendaal Date: Sun, 19 Feb 2023 13:49:35 +0100 Subject: [PATCH] fix --- rowers/integrations/polar.py | 4 ---- rowers/integrations/trainingpeaks.py | 4 ---- 2 files changed, 8 deletions(-) diff --git a/rowers/integrations/polar.py b/rowers/integrations/polar.py index 8b0b9768..b7c69067 100644 --- a/rowers/integrations/polar.py +++ b/rowers/integrations/polar.py @@ -514,8 +514,4 @@ class PolarIntegration(SyncIntegration): def token_refresh(self, *args, **kwargs) -> str: raise NotImplementedError -# just as a quick test during development -u = User.objects.get(id=1) - -nk_integration_1 = PolarIntegration(u) diff --git a/rowers/integrations/trainingpeaks.py b/rowers/integrations/trainingpeaks.py index c816ee6a..5a20a520 100644 --- a/rowers/integrations/trainingpeaks.py +++ b/rowers/integrations/trainingpeaks.py @@ -142,8 +142,4 @@ class TPIntegration(SyncIntegration): def token_refresh(self, *args, **kwargs) -> str: return super(TPIntegration, self).token_refresh(*args, **kwargs) -# just as a quick test during development -u = User.objects.get(id=1) - -integration_1 = TPIntegration(u)