(self)
| 519 | |
| 520 | @property |
| 521 | def max_parallelism(self) -> Optional[int]: |
| 522 | return self._params.get('max_parallelism', None) |
| 523 | |
| 524 | @max_parallelism.setter |
| 525 | def max_parallelism(self, value # type: int |
nothing calls this directly
no test coverage detected