We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a7fe54 commit 64b2bc0Copy full SHA for 64b2bc0
numcodecs/delta.py
@@ -64,7 +64,7 @@ def encode(self, buf):
64
enc[0] = arr[0]
65
66
# compute differences
67
- np.subtract(arr[1:], arr[0:-1], out = enc[1:])
+ np.subtract(arr[1:], arr[0:-1], out=enc[1:])
68
69
return enc
70
0 commit comments