(self)
| 230 | |
| 231 | @property |
| 232 | def consistency(self) -> ViewScanConsistency: |
| 233 | value = self._params.get( |
| 234 | 'scan_consistency', None |
| 235 | ) |
| 236 | if value is None: |
| 237 | return ViewScanConsistency.NOT_BOUNDED |
| 238 | if isinstance(value, str): |
| 239 | return ViewScanConsistency.from_str(value) |
| 240 | |
| 241 | @consistency.setter |
| 242 | def consistency(self, value # type: Union[ViewScanConsistency, str] |
nothing calls this directly
no test coverage detected