()
| 305 | action.setStatusTip(status_tip) |
| 306 | |
| 307 | def _open_dialog() -> None: |
| 308 | show_debug_report_dialog( |
| 309 | parent=parent, |
| 310 | recorder=recorder, |
| 311 | logger_name=logger_name, |
| 312 | libraries=libraries, |
| 313 | executables=executables, |
| 314 | include_module_paths=include_module_paths, |
| 315 | include_executable_paths=include_executable_paths, |
| 316 | log_limit=log_limit, |
| 317 | dialog_attr_name=dialog_attr_name, |
| 318 | ) |
| 319 | |
| 320 | action.triggered.connect(_open_dialog) |
| 321 | return action |
nothing calls this directly
no test coverage detected