From 47dee6a0af8323ef0c79e1ed2fd4fa115d625df9 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 21 Mar 2021 22:10:52 +0100 Subject: [PATCH] Woopsies, forgot to remove debug stuff --- app/models/appcatalog.py | 3 --- app/models/appci.py | 1 - 2 files changed, 4 deletions(-) diff --git a/app/models/appcatalog.py b/app/models/appcatalog.py index c04a0e7..5ee4b64 100644 --- a/app/models/appcatalog.py +++ b/app/models/appcatalog.py @@ -141,9 +141,6 @@ class Github(): self.user = GITHUB_USER self.token = GITHUB_TOKEN - print(self.user) - print(self.token) - def request(self, uri, autoretry=True): r = requests.get('https://api.github.com/{}'.format(uri), auth=(self.user, self.token)).json() diff --git a/app/models/appci.py b/app/models/appci.py index a425be1..4d0d98d 100644 --- a/app/models/appci.py +++ b/app/models/appci.py @@ -174,7 +174,6 @@ class AppCI(): print("Failed to fetch %s" % cibranch.url) continue - import pdb; pdb.set_trace() for app, test_summary in results.items(): if (test_summary["architecture"], test_summary["yunohost_branch"]) != (cibranch.arch, cibranch.branch):