From 1de95797a3b5fa11ebcbbb076efd263d3af02654 Mon Sep 17 00:00:00 2001 From: bstabler Date: Thu, 28 May 2020 15:02:04 -0700 Subject: [PATCH] pycodestyle --- populationsim/simul_balancer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/populationsim/simul_balancer.py b/populationsim/simul_balancer.py index 4281cb3..ad976a2 100644 --- a/populationsim/simul_balancer.py +++ b/populationsim/simul_balancer.py @@ -238,7 +238,7 @@ def np_simul_balancer( yy + (relaxed_constraint / float(importance))) # update HH weights - sub_weights[z] *= pow(gamma[z,c], incidence[c]) + sub_weights[z] *= pow(gamma[z, c], incidence[c]) # clip weights to upper and lower bounds sub_weights[z] = np.clip(sub_weights[z], weights_lower_bound, weights_upper_bound)