Skip to content

Commit e3cf021

Browse files
committed
removed print statements
1 parent 032d79e commit e3cf021

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

phenex/filters/aggregator.py

-3
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,10 @@ def aggregate(self, input_table: Table):
4646

4747
# Apply the distinct reduction if required
4848
if self.reduce:
49-
print("REDUCING")
5049
selected_columns = self.aggregation_index + [self.event_date_column]
5150
input_table = input_table.select(selected_columns).distinct()
52-
print(selected_columns)
5351
input_table = input_table.mutate(VALUE=ibis.null())
5452

55-
print(input_table.to_pandas())
5653
return input_table
5754

5855
class Nearest(VerticalDateAggregator):

0 commit comments

Comments
 (0)