Refactor datasetsExcel

This commit is contained in:
2024-02-29 19:05:20 +01:00
parent e4a6575722
commit ec323d86ab
3 changed files with 11 additions and 19 deletions

View File

@@ -72,8 +72,8 @@ int main(int argc, char** argv)
}
std::cout << Colors::RESET() << std::endl;
if (excel) {
auto report = platform::DatasetsExcel(data);
report.report();
auto report = platform::DatasetsExcel();
report.report(data);
std::cout << "Output saved in " << report.getFileName() << std::endl;
}
return 0;