Skip to content

Commit

Permalink
fix: fixing deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
kgmcquate committed Sep 12, 2024
1 parent fdc2611 commit 606d65b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,10 +335,10 @@ def to_image_reference(self):
properties=json.dumps(self.properties),
filename=self.image_filename,
thumbnail_filename=self.thumbnail_filename,
red_average=self.image_channel_means[0],
green_average=self.image_channel_means[1],
blue_average=self.image_channel_means[2],
white_fraction=self.white_fraction
red_average=float(self.image_channel_means[0]),
green_average=float(self.image_channel_means[1]),
blue_average=float(self.image_channel_means[2]),
white_fraction=float(self.white_fraction)
)


Expand Down

0 comments on commit 606d65b

Please sign in to comment.