1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 16:27:13 +03:00

Fixed possibly unbound variable

This commit is contained in:
A_D 2021-06-10 01:08:31 +02:00 committed by Athanasius
parent 8d77cc039b
commit e89c0e9e21

View File

@ -71,6 +71,7 @@ def extract_comments(call: ast.Call, lines: list[str], file: pathlib.Path) -> Op
above_line = lines[above].strip() if len(lines) >= above else None
current_line = lines[current].strip()
line: Optional[str] = None
bad_comment: Optional[str] = None
for line in (above_line, current_line):
if line is None or '#' not in line: