Skip to content

Commit

Permalink
minor bug fix around unit
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Dec 5, 2023
1 parent db90874 commit de4ef80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion markimg/markimg.py
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ def run(self, options):
d_femur = {}
# Print specific details about the image
rightFemurInfo = 'Right femur: ' + str(d_lengths['Right femur']) + f' {unit}'
d_femur['Right femur'] = str(d_lengths['Right femur']) + ' cm'
d_femur['Right femur'] = str(d_lengths['Right femur']) + f' {unit}'
x_pos = x_pos + line_gap
plt.text(x_pos, y_pos, rightFemurInfo, color='white', fontsize=options.textSize, rotation=90)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='markimg',
version='1.3.8',
version='1.4.0',
description='An app to mark landmark points and lines on an input image',
long_description=readme,
author='FNNDSC',
Expand Down

0 comments on commit de4ef80

Please sign in to comment.