Skip to content

Commit

Permalink
Be more explicit about value, fix Black
Browse files Browse the repository at this point in the history
  • Loading branch information
wenzeslaus committed Sep 16, 2020
1 parent af33680 commit 049cd84
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_simulation_function.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def test_simulation_function():
weather_coefficient = np.array([[0.6, 0.8, 0.7], [0.2, 0.8, 0.5]], dtype=float_type)

latency_period_steps = 0
exposed = [np.array([[0, 0, 0], [0, 0, 0]], dtype=int_type)] * (latency_period_steps + 1)
exposed_size = latency_period_steps + 1
exposed = [np.array([[0, 0, 0], [0, 0, 0]], dtype=int_type)] * exposed_size

a = pypops.test_simulation(
random_seed=42,
Expand Down

0 comments on commit 049cd84

Please sign in to comment.