Adjust return type of a method call. This is the same as get_function_hook(), but is called with the method full name (again, using the class where the method is defined).
(self, fullname: str)
| 669 | return None |
| 670 | |
| 671 | def get_method_hook(self, fullname: str) -> Callable[[MethodContext], Type] | None: |
| 672 | """Adjust return type of a method call. |
| 673 | |
| 674 | This is the same as get_function_hook(), but is called with the |
| 675 | method full name (again, using the class where the method is defined). |
| 676 | """ |
| 677 | return None |
| 678 | |
| 679 | def get_attribute_hook(self, fullname: str) -> Callable[[AttributeContext], Type] | None: |
| 680 | """Adjust type of an instance attribute. |
no outgoing calls
no test coverage detected