Skip to content

Commit

Permalink
fix(pm4py): fixing XES importing warnings in obtaining the resulting …
Browse files Browse the repository at this point in the history
…pd.DataFrame
  • Loading branch information
fit-alessandro-berti committed Oct 5, 2023
1 parent 109bb6e commit 35f13b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pm4py/read.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def read_xes(file_path: str, variant: str = "lxml", return_legacy_log_object: bo
if return_legacy_log_object:
return log
log = log_converter.apply(log, variant=log_converter.Variants.TO_DATA_FRAME)
log = dataframe_utils.convert_timestamp_columns_in_df(log)
log = dataframe_utils.convert_timestamp_columns_in_df(log, timest_format="ISO8601")
return log


Expand Down

0 comments on commit 35f13b6

Please sign in to comment.