mirror of
https://github.com/YunoHost/yunorunner.git
synced 2024-09-03 20:05:52 +02:00
[fix] actually don't need this here
This commit is contained in:
parent
48dcfffa37
commit
e7e3ca5c8b
1 changed files with 1 additions and 1 deletions
2
run.py
2
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)}
|
||||
|
|
Loading…
Add table
Reference in a new issue