File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -177,11 +177,3 @@ def wrapper(*args, **kwargs):
177
177
return wrapper
178
178
179
179
return decorator
180
-
181
- def use_kwargs (self , * args , ** kwargs ) -> typing .Callable :
182
- """Decorator that injects parsed arguments into a view function or method.
183
-
184
- Receives the same arguments as `webargs.core.Parser.use_kwargs`.
185
-
186
- """
187
- return super ().use_kwargs (* args , ** kwargs )
Original file line number Diff line number Diff line change 1
1
import functools
2
2
import inspect
3
+ import typing
3
4
import logging
4
5
import warnings
5
6
from collections .abc import Mapping
@@ -369,7 +370,7 @@ def wrapper(*args, **kwargs):
369
370
370
371
return decorator
371
372
372
- def use_kwargs (self , * args , ** kwargs ):
373
+ def use_kwargs (self , * args , ** kwargs ) -> typing . Callable :
373
374
"""Decorator that injects parsed arguments into a view function or method
374
375
as keyword arguments.
375
376
You can’t perform that action at this time.
0 commit comments