(
self, config: Optional[RunnableConfig] = None, **kwargs: Any
)
| 4369 | return RunnableEach(bound=self.bound.bind(**kwargs)) |
| 4370 | |
| 4371 | def with_config( |
| 4372 | self, config: Optional[RunnableConfig] = None, **kwargs: Any |
| 4373 | ) -> RunnableEach[Input, Output]: |
| 4374 | return RunnableEach(bound=self.bound.with_config(config, **kwargs)) |
| 4375 | |
| 4376 | def with_listeners( |
| 4377 | self, |
nothing calls this directly
no test coverage detected