chore: format code with ruff

Signed-off-by: Timothée Mazzucotelli <dev@pawamoy.fr>
This commit is contained in:
Timothée Mazzucotelli
2026-08-19 16:10:59 +02:00
parent ab17429025
commit aece054f2c
@@ -218,8 +218,7 @@ def _scan(cursor: Cursor) -> Iterator[Reference]:
while cursor.peek(count) == _BACKTICK:
count += 1
if (
cursor.at_line_start()
and count >= 3 # noqa: PLR2004
cursor.at_line_start() and count >= 3 # noqa: PLR2004
):
end = _scan_fenced_code(cursor, _BACKTICK)
if end is not None: