Skip to content

Commit

Permalink
fix: fix the reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Oli4 committed Aug 16, 2021
1 parent e8a3c32 commit eadf100
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eyepy/io/heyex/xml_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def layers_dict(bscan_obj):
return LayerAnnotation(data, max_height=bscan_obj.oct_obj.SizeZ)
else:
warnings.warn(f"{bscan_obj} contains no segmentation", UserWarning)
data = np.zeros((max(config.SEG_MAPPING.values()) + 1, self.oct_obj.SizeX))
data = np.zeros((max(config.SEG_MAPPING.values()) + 1, bscan_obj.oct_obj.SizeX))
return LayerAnnotation(data, max_height=bscan_obj.oct_obj.SizeZ)


Expand Down

0 comments on commit eadf100

Please sign in to comment.