Skip to content

Commit 8163580

Browse files
committed
Fix byte string version
1 parent 7c5ca5a commit 8163580

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

kinisi/parser.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
'xz': np.s_[::2],
2727
'yz': np.s_[1:],
2828
'xyz': np.s_[:],
29-
b'x': np.s_[0],
30-
b'y': np.s_[1],
31-
b'z': np.s_[2],
29+
b'x': np.s_[0:1],
30+
b'y': np.s_[1:2],
31+
b'z': np.s_[2:3],
3232
b'xy': np.s_[:2],
3333
b'xz': np.s_[::2],
3434
b'yz': np.s_[1:],

0 commit comments

Comments
 (0)