(self, **opt: Any)
| 3351 | |
| 3352 | class OptionEngine(OptionEngineMixin, Engine): |
| 3353 | def update_execution_options(self, **opt: Any) -> None: |
| 3354 | Engine.update_execution_options(self, **opt) |
| 3355 | |
| 3356 | |
| 3357 | Engine._option_cls = OptionEngine |
nothing calls this directly
no test coverage detected