File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ def wrapper2(*args: ty.Any, **kwargs: ty.Any) \
209
209
"when not streaming a response"
210
210
)
211
211
return ResponseWrapIterator (result , item_wrap_cb )
212
- return wrapper2
212
+ return wrapper2 # type: ignore[return-value]
213
213
return wrapper1
214
214
215
215
@@ -256,7 +256,7 @@ def wrapper2(*args: ty.Any, **kwargs: ty.Any) \
256
256
"with a single item, when not streaming a response"
257
257
)
258
258
return ResponseWrapIterator (result , item_wrap_cb )
259
- return wrapper2
259
+ return wrapper2 # type: ignore[return-value]
260
260
return wrapper1
261
261
262
262
@@ -285,7 +285,7 @@ def wrapper(*args: ty.Any, **kwargs: ty.Any) \
285
285
"object, when not streaming a response"
286
286
)
287
287
return ResponseWrapIterator (result , ident )
288
- return wrapper
288
+ return wrapper # type: ignore[return-value]
289
289
290
290
291
291
S = ty .TypeVar ("S" , bound = "SectionBase" )
You can’t perform that action at this time.
0 commit comments