Skip to content

Commit

Permalink
chore: fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
corenting committed Jul 4, 2024
1 parent 18b845d commit b9bf0ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roboquote/helpers/pillow.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_dominant_color(image: Image.Image) -> tuple[int, int, int, int]:
img = image.copy()
img = img.convert("RGBA")
img = img.resize((1, 1), resample=0)
return img.getpixel((0, 0))
return img.getpixel((0, 0)) # type: ignore


def wrap_text(
Expand Down

0 comments on commit b9bf0ab

Please sign in to comment.