Skip to content

Commit 9b9d6b9

Browse files
committed
fix: add mypy type ignore for var-annotated
1 parent 019c4d6 commit 9b9d6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/replicate/lib/_stream.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def stream(
9292
)
9393

9494
# Use the existing use() function with streaming=True
95-
model = use(client, ref, streaming=True) # pyright: ignore[reportUnknownVariableType]
95+
model = use(client, ref, streaming=True) # type: ignore[var-annotated] # pyright: ignore[reportUnknownVariableType]
9696

9797
# Call the model with the input
9898
return model(**input) # type: ignore[return-value]

0 commit comments

Comments
 (0)