(self)
| 111 | working_directory: str = "" |
| 112 | |
| 113 | def to_command_provider_config(self) -> CommandToolProviderConfig: |
| 114 | return CommandToolProviderConfig( |
| 115 | executable=self.executable, |
| 116 | extra_args=list(self.extra_args), |
| 117 | env=dict(self.env), |
| 118 | working_directory=self.working_directory, |
| 119 | ) |
| 120 | |
| 121 | |
| 122 | @dataclass(slots=True) |
no test coverage detected