(self)
| 190 | return load_group |
| 191 | |
| 192 | def _create_mem_mode_group(self): |
| 193 | mem_group = QGroupBox('Memory Allocation') |
| 194 | mem_layout = QHBoxLayout() |
| 195 | self.mem_mode_box = create_mem_mode_combobox() |
| 196 | mem_layout.addWidget(self.mem_mode_box) |
| 197 | mem_group.setLayout(mem_layout) |
| 198 | return mem_group |
| 199 | |
| 200 | def _create_vm_checks_group(self): |
| 201 | vm_group = QGroupBox('Sandbox/VM Detection') |
no test coverage detected