removed changes in read_kpi_file method

Signed-off-by: jitendracandela <jitendra.kushavah@candelatech.com>
This commit is contained in:
jitendracandela
2021-12-01 10:48:30 +05:30
parent e32d2bf303
commit 678c5dbc0e

View File

@@ -310,7 +310,7 @@ class ChamberView:
if df.empty == True:
return "empty"
else:
result = df[column_name].values.tolist()
result = df.to_string(index=False)
return result
def read_csv_individual_station_throughput(self, dir_name, option):