Skip to content
Snippets Groups Projects
Commit a0cc1eb6 authored by JOSSOUD Olivier's avatar JOSSOUD Olivier
Browse files

ConductCalib. Save synthesis file as TSV (not CSV)

parent 888d938a
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ class ConductCalibProvider:
def export_set_as_file(self, filename: str) -> None:
# Test if filename already has a extension ('.' followed by 3 letters) ; if not: append '.csv'
if not re.match(".*\.[a-zA-Z]{3}$", filename):
filename += '.csv'
filename += '.tsv'
# Concatenate the data of all runs of the calibration set in a single pd.Dataframe
set_df = pd.DataFrame()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment