You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To deal with decorators that use functools.wraps, we can detect a __wrapped__ arg and inspect that instead.
But this would not work for other decorators. But that may not matter.
Currently, providers with decorators are broken:
raises
I think this was introduced in #116 because
So using
getfullargspec
is not enough, we also need to useget_type_hints
.Unfortunately, this breaks keyword-only args:
The text was updated successfully, but these errors were encountered: