set workbook instance calling this script.
(caller_name:str)
| 30 | |
| 31 | |
| 32 | def set_caller(caller_name:str): |
| 33 | '''set workbook instance calling this script.''' |
| 34 | wb = __get_caller_workbook(caller_name) |
| 35 | set(KEY_CALLER, wb) |
| 36 | |
| 37 | |
| 38 | def get_caller() -> 'win32com.WorkBook': |
nothing calls this directly
no test coverage detected