Fix comment

This commit is contained in:
Veronica Berglyd Olsen
2024-04-13 00:38:29 +02:00
parent 3e711ebe7f
commit 2f55055c75
+1 -1
View File
@@ -57,7 +57,7 @@ def preProcessText(text: str, keepHeaders: bool = True) -> list[str]:
continue
if line[0] == ">":
line = line.lstrip(">").lstrip(" ")
if line: # Above check can return empty line (Issue #1816)
if line: # Above block can return empty line (Issue #1816)
if line[-1] == "<":
line = line.rstrip("<").rstrip(" ")
if "[" in line: