(self)
| 409 | |
| 410 | @property |
| 411 | def timeout(self) -> Optional[float]: |
| 412 | value = self._params.get('timeout', None) |
| 413 | if not value: |
| 414 | return None |
| 415 | value = value[:-1] |
| 416 | return float(value) |
| 417 | |
| 418 | @timeout.setter |
| 419 | def timeout(self, value # type: Union[timedelta,float,int] |
no test coverage detected