We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent debeb14 commit ae7dddbCopy full SHA for ae7dddb
simpleflow/swf/stats/pretty.py
@@ -6,7 +6,6 @@
6
from itertools import chain
7
from typing import TYPE_CHECKING, Any, Sequence
8
9
-import pytz
10
from tabulate import tabulate
11
12
from simpleflow.history import History
@@ -251,8 +250,8 @@ def list_details(workflow_executions: list[WorkflowExecution]) -> tuple[Sequence
251
250
execution.task_list,
252
execution.child_policy,
253
execution.close_status,
254
- datetime.fromtimestamp(execution.start_timestamp, tz=pytz.utc),
255
- datetime.fromtimestamp(execution.close_timestamp, tz=pytz.utc),
+ execution.start_timestamp,
+ execution.close_timestamp,
256
execution.cancel_requested,
257
execution.execution_timeout,
258
execution.input,
0 commit comments