Loading src/example.py +3 −3 Original line number Diff line number Diff line Loading @@ -82,7 +82,6 @@ def parse_all_examples(txt): if is_example_table(line): linetext = str(line.rows[0].cells[0].text) elif isinstance(line, str): if line != '\r\n' and line != '\n': linetext = line else: continue Loading @@ -102,6 +101,7 @@ def parse_all_examples(txt): res.append(Example(filename, new_example)) new_example = "" if linetext != "": previous_line = linetext return res Loading Loading
src/example.py +3 −3 Original line number Diff line number Diff line Loading @@ -82,7 +82,6 @@ def parse_all_examples(txt): if is_example_table(line): linetext = str(line.rows[0].cells[0].text) elif isinstance(line, str): if line != '\r\n' and line != '\n': linetext = line else: continue Loading @@ -102,6 +101,7 @@ def parse_all_examples(txt): res.append(Example(filename, new_example)) new_example = "" if linetext != "": previous_line = linetext return res Loading