(func, *args, **kwargs)
| 55 | |
| 56 | |
| 57 | def _invoke_callback(func, *args, **kwargs): # used to mark the frame for the debugger |
| 58 | return func(*args, **kwargs) # %% callback invoked %% |
| 59 | |
| 60 | |
| 61 | GLOBAL_CALLBACK_LIST: List[Any] = [] |
no test coverage detected
searching dependent graphs…