Skip to content

Commit bbcd4a8

Browse files
committed
Decimal -> int
1 parent 926ce39 commit bbcd4a8

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

hpc_provisioner/src/hpc_provisioner/cluster.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ def from_dynamo_dict(cluster_data: dict):
8484
"""
8585
for bool_value in BOOL_VALUES:
8686
cluster_data[bool_value] = True if cluster_data[bool_value] == 1 else False
87+
cluster_data["creation_time"] = int(cluster_data["creation_time"])
8788

8889
return Cluster.from_dict(cluster_data)
8990

0 commit comments

Comments
 (0)