From e7e3ca5c8b148fe78f43a535a1036e99edcfbb05 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Mon, 23 Jul 2018 06:41:03 +0200 Subject: [PATCH] [fix] actually don't need this here --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index f36edb6..b95c9a5 100644 --- a/run.py +++ b/run.py @@ -95,7 +95,7 @@ async def monitor_apps_lists(): async with aiohttp.ClientSession() as session: app_list = "official" task_logger.info(f"Downloading {app_list_name}.json...") - async with session.get(url, headers={"Authorization": f"token {app.config.github_token}"}) as resp: + async with session.get(url) as resp: data = await resp.json() repos = {x.name: x for x in Repo.select().where(Repo.app_list == app_list_name)}