Skip to content

Commit b1012ca

Browse files
Fixed more python whitespace.
1 parent 13e525c commit b1012ca

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

encoder/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ def main():
108108

109109

110110
if __name__ == '__main__':
111-
main()
111+
main()

encoder/utilities.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ def add_length_info(data):
1313
def strip_length_info(data):
1414
""" Strip 64-bit length information and truncate the data """
1515
length = data[:8].view(np.dtype('>u8'))[0]
16-
return data[8:8+length]
16+
return data[8:8+length]
17+

0 commit comments

Comments
 (0)