Skip to content

Commit 691269e

Browse files
committed
Fix type check
1 parent 0309c98 commit 691269e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gmmx/fit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,4 +162,4 @@ def em_cond(
162162
init_val=(x, gmm, 0, jnp.asarray(jnp.inf), jnp.array(jnp.inf)),
163163
)
164164
result = jax.block_until_ready(result)
165-
return EMFitterResult(*result, converged=result[2] < self.max_iter)
165+
return EMFitterResult(*result, converged=result[2] < self.max_iter) # type: ignore [misc]

0 commit comments

Comments
 (0)