(self)
| 627 | def func_to_run(func, *args, **kwargs): |
| 628 | class LoadFile(QRunnable): |
| 629 | def run(self): |
| 630 | result_dict = func(*args, **kwargs) |
| 631 | signal_complete.emit(result_dict) |
| 632 | |
| 633 | return LoadFile() |
| 634 |
no outgoing calls
no test coverage detected