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 5176b45Copy full SHA for 5176b45
scripts/shared.py
@@ -220,7 +220,10 @@ 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 (
224
+ entry_end_index + 1 < len(lines)
225
+ and not lines[entry_end_index + 1].strip()
226
+ ):
227
entry_end_index += 1
228
# Initalize variables of entry is not present
229
else:
0 commit comments