(input_str, suffix="", hook_function_argument_map=None)
| 27 | # `hook_function_argument_map` is only a required argument for adapters that implement |
| 28 | # custom hooks. |
| 29 | def read_from_string(input_str, suffix="", hook_function_argument_map=None): |
| 30 | tl = read_from_file(input_str, suffix, hook_function_argument_map) |
| 31 | return tl |
| 32 | |
| 33 | |
| 34 | # this is only required for adapters that implement custom hooks |
nothing calls this directly
no test coverage detected