From 62e3c40f749fd9a2d8a39fce2c3805be9667b8aa Mon Sep 17 00:00:00 2001 From: Henri Casanova Date: Thu, 24 Oct 2024 10:57:46 -1000 Subject: [PATCH] more float removal --- wrench/simulation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wrench/simulation.py b/wrench/simulation.py index 52f4e18..c1681d2 100644 --- a/wrench/simulation.py +++ b/wrench/simulation.py @@ -338,7 +338,7 @@ def create_batch_compute_service(self, hostname: str, resources: list, scratch_space: str, property_list: dict[str, str], - message_payload_list: dict[str, float]) -> BatchComputeService: + message_payload_list: dict[str, int]) -> BatchComputeService: """ Create a batch compute service @@ -374,7 +374,7 @@ def create_cloud_compute_service(self, hostname: str, execution_host: list, scratch_space: str, property_list: dict[str, str], - message_payload_list: dict[str, float]) -> CloudComputeService: + message_payload_list: dict[str, int]) -> CloudComputeService: """ Create a cloud compute service