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)