We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13e525c commit b1012caCopy full SHA for b1012ca
encoder/main.py
@@ -108,4 +108,4 @@ def main():
108
109
110
if __name__ == '__main__':
111
- main()
+ main()
encoder/utilities.py
@@ -13,4 +13,5 @@ def add_length_info(data):
13
def strip_length_info(data):
14
""" Strip 64-bit length information and truncate the data """
15
length = data[:8].view(np.dtype('>u8'))[0]
16
- return data[8:8+length]
+ return data[8:8+length]
17
+
0 commit comments