Skip to content

Commit 47568c9

Browse files
authored
Merge pull request #307 from jhlegarreta/sty/ignore-test-comparison-error
STY: Ignore test comparison type errors
2 parents c94ea90 + 83732a2 commit 47568c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def test_compute_bland_altman_features(request):
105105
assert np.isscalar(std_diff)
106106
assert np.isscalar(loa_lower)
107107
assert np.isscalar(loa_upper)
108-
assert loa_lower < loa_upper
108+
assert loa_lower < loa_upper # type: ignore
109109
assert np.isscalar(ci_mean)
110110
assert np.isscalar(ci_loa)
111111

0 commit comments

Comments
 (0)