Skip to content

Commit 0dd0394

Browse files
committed
revert slice styling
1 parent 89d56ac commit 0dd0394

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

specreduce/tests/test_tracing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def test_fit_trace():
151151
window = 10
152152
guess = int(nrows / 2)
153153
img_win_nans = img.copy()
154-
img_win_nans[guess - window: guess + window] = np.nan
154+
img_win_nans[guess - window : guess + window] = np.nan
155155

156156
# ensure float bin values trigger a warning but no issues otherwise
157157
with pytest.warns(UserWarning, match="TRACE: Converting bins to int"):

0 commit comments

Comments
 (0)