Skip to content

Commit

Permalink
Line return fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleydworak committed Jun 11, 2022
1 parent 917e0e1 commit d9b352f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions harmonize.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,7 @@ def averageimage():
cords[num] = cds
bds = [cds[2] - dist, cds[2] + dist, cds[0] - dist, cds[0] + dist]
bds = list(map(int, bds))
bds = list(map(lambda x: 0 if x < 0 else
x, bds))
bds = list(map(lambda x: 0 if x < 0 else x, bds))
#bounds.append(bds)
bounds[num] = bds

Expand Down

0 comments on commit d9b352f

Please sign in to comment.