diff --git a/API/main.py b/API/main.py index 82c2549..c2d9834 100755 --- a/API/main.py +++ b/API/main.py @@ -293,7 +293,7 @@ class Matrix(SampleBase): def set_image(self, url: str): self.image = Image.open(requests.get(url, stream=True).raw) - # display rectangle at position with dimensions in current color + # display image at position with dimensions in current color def display_image(self, x: int, y: int, w: int|None = None, h: int|None = None): # resize image to specified or max size self.image.resize((w or self.matrix.width, h or self.matrix.height), Image.ANTIALIAS)