Skip to content

Commit a0f23d0

Browse files
Fix line length
1 parent 1e5b985 commit a0f23d0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/shared.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ def update_readme(
220220
entry_start_index = lines.index(entry_start_line)
221221
entry_end_index = lines.index(entry_end_line)
222222
# Include any trailing empty/whitespace-only lines
223-
while entry_end_index + 1 < len(lines) and not lines[entry_end_index + 1].strip():
223+
while (entry_end_index + 1 < len(lines)
224+
and not lines[entry_end_index + 1].strip()):
224225
entry_end_index += 1
225226
# Initalize variables of entry is not present
226227
else:

0 commit comments

Comments
 (0)