(df, output_file)
| 134 | return sconstruct_paths |
| 135 | |
| 136 | def output_to_markdown(df, output_file): |
| 137 | with open(output_file, 'w', encoding='utf-8') as file: |
| 138 | file.write(df.to_markdown(index=False)) |
| 139 | |
| 140 | def output_to_yaml(dataframe, output_file, header_comment): |
| 141 | data = dataframe.to_dict(orient='records') |
no test coverage detected