Extract the qualname of a `ValidateCallSupportedTypes` object.
(func: ValidateCallSupportedTypes)
| 22 | |
| 23 | |
| 24 | def extract_function_qualname(func: ValidateCallSupportedTypes) -> str: |
| 25 | """Extract the qualname of a `ValidateCallSupportedTypes` object.""" |
| 26 | return f'partial({func.func.__qualname__})' if isinstance(func, functools.partial) else func.__qualname__ |
| 27 | |
| 28 | |
| 29 | def update_wrapper_attributes(wrapped: ValidateCallSupportedTypes, wrapper: Callable[..., Any]): |
no outgoing calls
no test coverage detected