Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2023-02-19 13:49:35 +01:00
parent 6513182fe1
commit 17d5ac9655
2 changed files with 0 additions and 8 deletions

View File

@@ -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)

View File

@@ -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)