(self, **kwargs: Any)
| 4366 | return super().get_name(suffix, name=name) |
| 4367 | |
| 4368 | def bind(self, **kwargs: Any) -> RunnableEach[Input, Output]: |
| 4369 | return RunnableEach(bound=self.bound.bind(**kwargs)) |
| 4370 | |
| 4371 | def with_config( |
| 4372 | self, config: Optional[RunnableConfig] = None, **kwargs: Any |
nothing calls this directly
no test coverage detected