This method exists to be optionally overwritten by derived classes and is not decorated so that the derived class doesn't have to use the decorator.
(self, execution_config: ExecutionConfiguration)
| 84 | self.virtual_devices.append(VirtualDevice(vdev)) |
| 85 | |
| 86 | def _set_up_execution(self, execution_config: ExecutionConfiguration) -> None: |
| 87 | """ |
| 88 | This method exists to be optionally overwritten by derived classes and |
| 89 | is not decorated so that the derived class doesn't have to use the decorator. |
| 90 | """ |
| 91 | |
| 92 | def tear_down_execution(self) -> None: |
| 93 | """ |