Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
votrou committed Nov 27, 2024
1 parent b2d6742 commit e8ed144
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/ray/data/datasource/parquet_base_datasource.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def calculate_nulls(self, table):

if total == 0:
return
else:
percent = (total - null) / total


percent = (total - null) / total
self.null_count_metric.observe(percent)

0 comments on commit e8ed144

Please sign in to comment.