Skip to content

Commit 6dc7707

Browse files
committed
no-matching-overload
1 parent 987b083 commit 6dc7707

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,4 +306,3 @@ invalid-return-type = "ignore"
306306
unresolved-import = "ignore"
307307
possibly-missing-attribute = "ignore"
308308
invalid-parameter-default = "ignore"
309-
no-matching-overload = "ignore"

src/runloop_api_client/_base_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def _maybe_override_cast_to(self, cast_to: type[ResponseT], options: FinalReques
587587
return cast_to
588588

589589
# make a copy of the headers so we don't mutate user-input
590-
headers = dict(options.headers)
590+
headers = dict(options.headers) # type: ignore[no-matching-overload]
591591

592592
# we internally support defining a temporary header to override the
593593
# default `cast_to` type for use with `.with_raw_response` and `.with_streaming_response`

0 commit comments

Comments
 (0)