Skip to content

Commit 87e125d

Browse files
Update autoemulate/simulations/seir.py
Co-authored-by: Radka Jersakova <[email protected]>
1 parent f093c65 commit 87e125d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autoemulate/simulations/seir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def seir_model(t, y, N, beta, gamma, sigma):
6161
vectorized=False,
6262
)
6363

64-
_, E, I, R = sol.y
64+
_, E, I, R = sol.y # noqa: E741
6565
I_max = np.max(I)
6666

6767
return float(I_max) / float(N)

0 commit comments

Comments
 (0)