We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e5b985 commit a0f23d0Copy full SHA for a0f23d0
scripts/shared.py
@@ -220,7 +220,8 @@ def update_readme(
220
entry_start_index = lines.index(entry_start_line)
221
entry_end_index = lines.index(entry_end_line)
222
# Include any trailing empty/whitespace-only lines
223
- while entry_end_index + 1 < len(lines) and not lines[entry_end_index + 1].strip():
+ while (entry_end_index + 1 < len(lines)
224
+ and not lines[entry_end_index + 1].strip()):
225
entry_end_index += 1
226
# Initalize variables of entry is not present
227
else:
0 commit comments