(self)
| 233 | |
| 234 | @property |
| 235 | def timeout(self) -> Optional[float]: |
| 236 | value = self._params.get('timeout', None) |
| 237 | if not value: |
| 238 | return None |
| 239 | value = value[:-1] |
| 240 | return float(value) |
| 241 | |
| 242 | @timeout.setter |
| 243 | def timeout(self, value # type: Union[timedelta,float,int] |
nothing calls this directly
no test coverage detected