(self, key: str)
| 74 | return host |
| 75 | |
| 76 | def get_option(self, key: str) -> Optional[str]: |
| 77 | for opt in self.options: |
| 78 | if opt.key.lower() == key.lower(): |
| 79 | return opt.value |
| 80 | return None |
| 81 | |
| 82 | def set_option(self, key: str, value: str) -> None: |
| 83 | for opt in self.options: |
no outgoing calls
no test coverage detected