Skip to content

Commit 2433dcd

Browse files
committed
Fix the export column names
1 parent b1a98a4 commit 2433dcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

preciceprofiling/common.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,9 +146,9 @@ def toExportDataFrame(self, unit):
146146
("participant", pl.Utf8),
147147
("rank", pl.Int32),
148148
("size", pl.Int32),
149-
("eid", pl.Utf8),
150-
("ts", pl.Int64),
151-
("dur", pl.Int64),
149+
("event", pl.Utf8),
150+
("timestamp", pl.Int64),
151+
("duration", pl.Int64),
152152
] + [(dn, pl.Int64) for dn in dataFields]
153153
df = pl.DataFrame(
154154
data=self.toExportList(unit, dataFields),

0 commit comments

Comments
 (0)