Skip to content

Commit

Permalink
Minor grammar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip Samal committed Dec 11, 2023
1 parent 76b8a3a commit 5a7ec55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions markimg/markimg.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def run(self, options):
unit = 'px'
msg = ('WARNING: \n'
'DICOM is missing FOVDimension tag.\n'
'Calculations in cm is not possible.')
'Calculations in cm are not possible.')

if options.textPos == "left":
x_pos = 0
Expand Down Expand Up @@ -655,9 +655,9 @@ def getSum(self, val1, val2):
def compareLength(self, left, right):
compareText = "equal"
if left > right:
compareText = f'left longer({round(((left-right)/right)*100)}%)'
compareText = f'left longer ({round(((left-right)/right)*100)}%)'
elif right > left:
compareText = f'right longer({round(((right-left)/left)*100)}%)'
compareText = f'right longer ({round(((right-left)/left)*100)}%)'

return compareText + ' '

Expand Down

0 comments on commit 5a7ec55

Please sign in to comment.