Skip to content

Commit

Permalink
Merge pull request #593
Browse files Browse the repository at this point in the history
bin/lesson_check.py: use proper function
  • Loading branch information
maxim-belkin authored May 6, 2021
2 parents 6d5b41e + d3e11ab commit 5e32b18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lesson_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def read_references(reporter, ref_path):
for (num, line) in enumerate(reader, 1):

# Skip empty lines
if length(line.strip()) == 0:
if len(line.strip()) == 0:
continue

# Skip HTML comments
Expand Down

0 comments on commit 5e32b18

Please sign in to comment.