From 57a1b64bd21879e9cf5e5c086c87bc4c2b24a291 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 22 Apr 2026 16:16:37 +0200 Subject: [PATCH] Reformat with latest black --- tools/download_packages.py | 1 - tools/tests/test_scan_for_updates.py | 1 + tools/update_latest_report.py | 6 ++---- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/download_packages.py b/tools/download_packages.py index 6b61d3dbb..4fba55bf0 100755 --- a/tools/download_packages.py +++ b/tools/download_packages.py @@ -35,7 +35,6 @@ """ - import os import sys from os.path import join diff --git a/tools/tests/test_scan_for_updates.py b/tools/tests/test_scan_for_updates.py index 8762e8ebe..bff6fb876 100644 --- a/tools/tests/test_scan_for_updates.py +++ b/tools/tests/test_scan_for_updates.py @@ -5,6 +5,7 @@ """ This module contains some tests for the scan_for_updates.py script """ + import json import os import shutil diff --git a/tools/update_latest_report.py b/tools/update_latest_report.py index f27aa1069..beb248f3b 100755 --- a/tools/update_latest_report.py +++ b/tools/update_latest_report.py @@ -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""" Redirecting to latest report @@ -78,8 +77,7 @@ def generate_redirect( {blob_url} - """ - ) + """) ################################################################################