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.
2 parents 4690918 + 2ba8007 commit e266bfbCopy full SHA for e266bfb
surfa/io/fsio.py
@@ -125,7 +125,7 @@ def read_binary_lookup_table(file):
125
file_name_size = iou.read_bytes(file, '>i4')
126
# if the file comes from surfa.io.fsio.write_binary_lookup_table(), file_name_size = 0.
127
# if the file comes from freesurfer/utils/colortab.cpp::znzCTABwriteIntoBinaryV2(), file_name_size > 0.
128
- file.read(file_name_size).decode('utf-8')
+ file.read(file_name_size)#.decode('utf-8')
129
130
total = iou.read_bytes(file, '>i4')
131
if total < 1:
0 commit comments