Skip to content

Commit

Permalink
don't duplicate headers
Browse files Browse the repository at this point in the history
  • Loading branch information
tanghaibao committed Apr 24, 2024
1 parent 2961ed2 commit eb20e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jcvi/graphics/grabseeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def header(cls, calibrated: bool = False) -> str:
"PixelCMratio RGBtransform Length(cm)"
" Width(cm) CorrectedColorName CorrectedRGB".split()
)
fields += [f"EllipticFourierDescriptors" for i in range(1, 11)]
fields += ["EllipticFourierDescriptors"]
return "\t".join(fields)

def calibrate(self, pixel_cm_ratio: float, tr: np.ndarray):
Expand Down

0 comments on commit eb20e53

Please sign in to comment.