(self, parent: object)
| 213 | return r |
| 214 | |
| 215 | def bind_parent(self, parent: object): |
| 216 | return dataclasses.replace( |
| 217 | self, |
| 218 | origin=parent.__class__, |
| 219 | wrapped=getattr(parent, self.original_name), |
| 220 | ) |
| 221 | |
| 222 | def bind_arguments(self, *args, **kwargs): |
| 223 | """Bind the function with the given arguments.""" |
no test coverage detected