Skip to content

Commit fe51d07

Browse files
authored
Reformat with latest black (#1327)
1 parent ffdef5d commit fe51d07

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

tools/download_packages.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
3636
"""
3737

38-
3938
import os
4039
import sys
4140
from os.path import join

tools/tests/test_scan_for_updates.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""
66
This module contains some tests for the scan_for_updates.py script
77
"""
8+
89
import json
910
import os
1011
import shutil

tools/update_latest_report.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,7 @@ def generate_redirect(
6767
blob_url = repo + "/blob/" + dir_report + "/report.md"
6868

6969
with open(os.path.join(dir_redirect, "redirect.html"), "w") as f:
70-
f.write(
71-
f"""
70+
f.write(f"""
7271
<!DOCTYPE html>
7372
<meta charset="utf-8">
7473
<title>Redirecting to latest report</title>
@@ -78,8 +77,7 @@ def generate_redirect(
7877
<body>
7978
<a href="{blob_url}">{blob_url}</a>
8079
</body>
81-
"""
82-
)
80+
""")
8381

8482

8583
################################################################################

0 commit comments

Comments
 (0)