Skip to content

Commit

Permalink
format dates when produced by to_datetime proesing fucntion
Browse files Browse the repository at this point in the history
  • Loading branch information
cblades-tc committed Oct 15, 2024
1 parent 225c0ff commit 392ca9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcex/api/tc/ti_transform/ti_predefined_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def format_table(self, value, column_order: str):

def any_to_datetime(self, value):
"""Convert any value to a datetime object."""
return self.tcex.util.any_to_datetime(value)
return self.tcex.util.any_to_datetime(value).isoformat()

def append(self, value, suffix: str):
"""Append a value to the input value."""
Expand Down

0 comments on commit 392ca9e

Please sign in to comment.