claude can't lint

This commit is contained in:
Sydney Runkle
2026-02-27 14:33:25 -05:00
parent 37ea45d065
commit cd4be9241e
+8 -2
View File
@@ -3105,7 +3105,10 @@ class Pregel(
):
if stream_mode == "values":
latest = chunk
if isinstance(chunk, dict) and (ints := chunk.get(INTERRUPT)) is not None:
if (
isinstance(chunk, dict)
and (ints := chunk.get(INTERRUPT)) is not None
):
interrupts.extend(ints)
else:
chunks.append(chunk)
@@ -3182,7 +3185,10 @@ class Pregel(
):
if stream_mode == "values":
latest = chunk
if isinstance(chunk, dict) and (ints := chunk.get(INTERRUPT)) is not None:
if (
isinstance(chunk, dict)
and (ints := chunk.get(INTERRUPT)) is not None
):
interrupts.extend(ints)
else:
chunks.append(chunk)