Skip to content

Commit

Permalink
Fix ruff lint
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Aug 3, 2024
1 parent 832e55d commit e206612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyDOE3/doe_lhs.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _lhsmu(N, samples=None, corr=None, random_state=None, M=5):

if corr is not None:
# check if covariance matrix is valid
assert type(corr) == np.ndarray
assert type(corr) is np.ndarray
assert corr.ndim == 2
assert corr.shape[0] == corr.shape[1]
assert corr.shape[0] == N
Expand Down

0 comments on commit e206612

Please sign in to comment.