Skip to content

Commit

Permalink
Revert aiohttp. Update ANTIALIAS to LANCZOS
Browse files Browse the repository at this point in the history
  • Loading branch information
foxey committed Jan 21, 2024
1 parent 0cad14c commit 29f97e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ adafruit-circuitpython-register==1.9.7
adafruit-circuitpython-ssd1306==2.12.3
Adafruit-PlatformDetect==3.19.2
Adafruit-PureIO==1.1.9
aiohttp==3.9.0
aiohttp==3.8.6
aiosignal==1.2.0
async-timeout==4.0.2
asynctest==0.13.0
Expand Down
2 changes: 1 addition & 1 deletion src/vb3/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def logo_image(self, filename=None):
filename = os.path.dirname(os.path.realpath(__file__)) + '/volumio.ppm'
try:
self._logo_image = Image.open(filename). \
resize((self.width, self.height), Image.ANTIALIAS).convert('1')
resize((self.width, self.height), Image.LANCZOS).convert('1')
self._image.paste(self._logo_image)
self.show(self._image)
except IOError:
Expand Down

0 comments on commit 29f97e0

Please sign in to comment.