Skip to content

Commit

Permalink
Fix instance of tab to spaces
Browse files Browse the repository at this point in the history
Should fix #37
  • Loading branch information
cfhammill committed Jan 3, 2017
1 parent c5472ee commit d341aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/volumes_from_labels_only
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if __name__ == "__main__":

for l in labels:
voxelsPerLabel = len(atlas.data[atlas.data == l])
volumePerLabel = volumePerVoxel*voxelsPerLabel
volumePerLabel = volumePerVoxel*voxelsPerLabel
output.write(str(int(l)) + ", " + str(volumePerLabel) + "\n")

atlas.closeVolume()
Expand Down

0 comments on commit d341aeb

Please sign in to comment.