Skip to content

Commit a97afeb

Browse files
committed
Add missing parentheses to print statement
1 parent 1e28498 commit a97afeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

03-anatomy.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ conversion method:
129129
>>> for i in range(Z.ndim):
130130
... offset_start += Z.strides[i] * index[i]
131131
>>> offset_end = offset_start + Z.itemsize
132-
>>> print(Z.tobytes()[offset_start:offset_end]
132+
>>> print(Z.tobytes()[offset_start:offset_end])
133133
b'\x04\x00'
134134
135135

0 commit comments

Comments
 (0)