Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion tools/download_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"""


import os
import sys
from os.path import join
Expand Down
1 change: 1 addition & 0 deletions tools/tests/test_scan_for_updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"""
This module contains some tests for the scan_for_updates.py script
"""

import json
import os
import shutil
Expand Down
6 changes: 2 additions & 4 deletions tools/update_latest_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ def generate_redirect(
blob_url = repo + "/blob/" + dir_report + "/report.md"

with open(os.path.join(dir_redirect, "redirect.html"), "w") as f:
f.write(
f"""
f.write(f"""
<!DOCTYPE html>
<meta charset="utf-8">
<title>Redirecting to latest report</title>
Expand All @@ -78,8 +77,7 @@ def generate_redirect(
<body>
<a href="{blob_url}">{blob_url}</a>
</body>
"""
)
""")


################################################################################
Expand Down