(self)
| 195 | |
| 196 | @property |
| 197 | def timeout(self) -> Optional[float]: |
| 198 | value = self._params.get('timeout', None) |
| 199 | if not value: |
| 200 | return None |
| 201 | value = value[:-1] |
| 202 | return float(value) |
| 203 | |
| 204 | @timeout.setter |
| 205 | def timeout(self, value # type: Union[timedelta,float,int] |
nothing calls this directly
no test coverage detected