Skip to content

Commit

Permalink
Merge pull request #70 from YunoHost/actions/black
Browse files Browse the repository at this point in the history
Format Python code with Black
  • Loading branch information
alexAubin authored Nov 6, 2024
2 parents 64d4bd4 + efff8c2 commit 72c9061
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -1401,9 +1401,12 @@ async def api_results(request):

for repo in repos:

latest_result_path = yunorunner_dir + f"/results/logs/{repo.name}_{app.config.ARCH}_{app.config.YNH_BRANCH}_results.json"
latest_result_path = (
yunorunner_dir
+ f"/results/logs/{repo.name}_{app.config.ARCH}_{app.config.YNH_BRANCH}_results.json"
)
if not os.path.exists(latest_result_path):
continue
continue
all_results[repo.name] = json.load(open(latest_result_path))

continue
Expand Down

0 comments on commit 72c9061

Please sign in to comment.