Skip to content

Commit 3d3627a

Browse files
style: wrap implicit string concatenations (ISC004)
1 parent 95d0c1d commit 3d3627a

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

scripts/hacktoberfest_prep_update.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,19 @@ def build_stats_block() -> str:
153153
lines = [
154154
STATS_HEADER,
155155
"",
156-
f"_Generated automatically by "
157-
f"`scripts/hacktoberfest_prep_update.py` on {today} (UTC)._",
156+
(
157+
f"_Generated automatically by "
158+
f"`scripts/hacktoberfest_prep_update.py` on {today} (UTC)._"
159+
),
158160
"",
159161
f"- **Open issues:** {open_issues}",
160162
f"- **Open pull requests:** {open_prs}",
161163
f"- **Open PRs labelled `{AWAITING_LABEL}`:** {awaiting}",
162164
"",
163-
"**Top three directories to work on** (most open pull requests labelled "
164-
f"`{AWAITING_LABEL}`):",
165+
(
166+
"**Top three directories to work on** (most open pull requests "
167+
f"labelled `{AWAITING_LABEL}`):"
168+
),
165169
"",
166170
]
167171
if top_dirs := top_awaiting_directories():

0 commit comments

Comments
 (0)