With pylance (strict) i'm getting errors with injector decorators.

It doesn' tlook like the any paramspec or typevars in the definition
def params(**args_to_classes: Binding) -> Callable:
"""Return a decorator which injects args into a function.
For example::
@inject.params(cache=RedisCache, db=DbInterface)
def sign_up(name, email, cache, db):
pass
"""
return _ParametersInjection(**args_to_classes)