Skip to content

Commit

Permalink
Clean up the backend
Browse files Browse the repository at this point in the history
  • Loading branch information
henryye authored and qidanrui committed Feb 21, 2022
1 parent 5e2f38a commit 1176ddd
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions dataprep/clean/gui/clean_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -527,18 +527,11 @@ def getFunctionParams() -> Any:
continue
if arg == "inplace":
break
# if isinstance(args[arg].default, bool):
# temp_option_list.append({"value": "True", "label": "True"})
# temp_option_list.append({"value": "False", "label": "False"})
# param_dic[arg] = temp_option_list
# param_default[arg] = str(args[arg].default)
if arg == "output_format":
temp_option_list.append({"value": "standard", "label": "standard"})
temp_option_list.append({"value": "compact", "label": "compact"})
param_dic[arg] = temp_option_list
param_default[arg] = str(args[arg].default)
print(param_dic)
print(param_default)

return {"tableColumns": table_columns, "paramDic": param_dic, "paramDefault": param_default}

Expand Down

1 comment on commit 1176ddd

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DataPrep.EDA Benchmarks

Benchmark suite Current: 1176ddd Previous: 5e2f38a Ratio
dataprep/tests/benchmarks/eda.py::test_create_report 0.303998021350325 iter/sec (stddev: 0.052705302196025754) 0.2899842103336491 iter/sec (stddev: 0.05712295425771257) 0.95

This comment was automatically generated by workflow using github-action-benchmark.

Please # to comment.