(data, log=True, convert_strings_to_urls=True)
| 437 | return data |
| 438 | |
| 439 | def write_temp_excel(data, log=True, convert_strings_to_urls=True): |
| 440 | return write_excel(data, "temp.xlsx", log, convert_strings_to_urls) |
| 441 | |
| 442 | def read_temp_excel(): |
| 443 | return read_excel("temp.xlsx") |
nothing calls this directly
no test coverage detected