(self)
| 1031 | |
| 1032 | @property |
| 1033 | def timeout(self) -> Optional[float]: |
| 1034 | value = self._params.get('timeout', None) |
| 1035 | if not value: |
| 1036 | return None |
| 1037 | value = value[:-1] |
| 1038 | return float(value) |
| 1039 | |
| 1040 | @timeout.setter |
| 1041 | def timeout(self, value # type: Union[timedelta,float,int] |
nothing calls this directly
no test coverage detected