Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add first & last aggregation ops #144

Merged
merged 18 commits into from
Aug 18, 2023
Prev Previous commit
Next Next commit
Update transformation_ops.py
  • Loading branch information
PatrikDurdevic committed Aug 11, 2023
commit 160776c0ef9e807f622f549b8c550aa980031d0c
1 change: 0 additions & 1 deletion trane/ops/transformation_ops.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

from trane.ops.op_base import OpBase


Expand Down Expand Up @@ -31,7 +30,7 @@

def generate_description(self):
if self.column_name is None:
return ""

Check warning on line 33 in trane/ops/transformation_ops.py

View check run for this annotation

Codecov / codecov/patch

trane/ops/transformation_ops.py#L33

Added line #L33 was not covered by tests
return self.description.format(self.column_name)

def label_function(self, dataslice):
Expand Down
Loading