Skip to content

Commit

Permalink
Fix calling columns
Browse files Browse the repository at this point in the history
  • Loading branch information
pvk-developer committed Oct 2, 2024
1 parent a55078d commit dd211ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/benchmark/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def compare_and_store_results_in_gdrive():
summary[name] = df['percentage_supported']

summary['average'] = summary[list(results)].mean(axis=1)
for col in summary.columns():
for col in summary.columns:
if col not in ('sdtype', 'dtype'):
summary[col] = summary[col].apply(lambda x: f'{x}%')

Expand Down

0 comments on commit dd211ee

Please sign in to comment.