Return method of `cls` having `method_name`.
(cls: type, method_name: str)
| 27 | |
| 28 | |
| 29 | def cls_method_fn(cls: type, method_name: str): |
| 30 | """Return method of `cls` having `method_name`.""" |
| 31 | return getattr(cls, method_name) |
no outgoing calls
no test coverage detected
searching dependent graphs…