Skip to content

Commit

Permalink
Bugfix: make format
Browse files Browse the repository at this point in the history
  • Loading branch information
amcc1996 committed Jan 7, 2021
1 parent 00104a0 commit 6e914ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/generate_examples_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def natural_keys(text):
# Write the source code and output to the README.md file
file.write("\n```python\n")
found_blank = 0
for line in example_lines[source_start + 2: source_end + 1]:
for line in example_lines[source_start + 2 : source_end + 1]:
# Stop when an emtpy line is found
if len(line.split()) == 0:
found_blank = found_blank + 1
Expand Down

0 comments on commit 6e914ab

Please sign in to comment.