Skip to content

Commit

Permalink
Remove response from comparing dfs
Browse files Browse the repository at this point in the history
  • Loading branch information
pvk-developer committed Sep 20, 2024
1 parent de9b4ee commit bd52d6e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/benchmark/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,11 @@ def compare_previous_result_with_current():
'python_version': python_version,
})

results = {
return {
'unsupported_dtypes': pd.DataFrame(unsupported_dtypes),
'new_supported_dtypes': pd.DataFrame(new_supported_dtypes),
'previously_unseen_dtypes': pd.DataFrame(previously_unseen_dtypes),
}
return results, response


def save_results_to_json(results, filename=None):
Expand Down Expand Up @@ -159,7 +158,7 @@ def calculate_support_percentage(df):

def compare_and_store_results_in_gdrive():
csv_handler = CSVHandler()
comparison_results, response = compare_previous_result_with_current()
comparison_results = compare_previous_result_with_current()

results = csv_handler.read('results/')
sorted_results = {}
Expand Down

0 comments on commit bd52d6e

Please sign in to comment.