(json_file)
| 924 | ) |
| 925 | |
| 926 | def load_data(json_file): |
| 927 | if isinstance(output_file_dir, str): |
| 928 | json_file = os.path.join(output_file_dir, json_file) |
| 929 | json_data = load_data_func(json_file) |
| 930 | return json2output(json_data) |
| 931 | |
| 932 | load_bnt.click( |
| 933 | fn=load_data, |
nothing calls this directly
no test coverage detected