From 2bd2306bc6d262e3b1d3bf22e95523e1eb742c87 Mon Sep 17 00:00:00 2001 From: Anirban Chaudhuri <75496534+anirban-chaudhuri@users.noreply.github.com> Date: Wed, 26 Jun 2024 19:23:17 -0400 Subject: [PATCH] Lint --- pyciemss/integration_utils/intervention_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyciemss/integration_utils/intervention_builder.py b/pyciemss/integration_utils/intervention_builder.py index 150c6024d..30345d169 100644 --- a/pyciemss/integration_utils/intervention_builder.py +++ b/pyciemss/integration_utils/intervention_builder.py @@ -78,7 +78,7 @@ def start_time_param_value_objective( def intervention_generator( x: torch.Tensor, ) -> Dict[float, Dict[str, Intervention]]: - assert x.size()[0] == param_size*2 + assert x.size()[0] == param_size * 2 static_parameter_interventions: Dict[float, Dict[str, Intervention]] = {} for count in range(param_size): if x[count * 2].item() in static_parameter_interventions: