From 591dc8a3cd7c5007a8b52b8b6113aae2e8c13979 Mon Sep 17 00:00:00 2001 From: waltem01 Date: Fri, 24 Nov 2023 07:09:04 +0100 Subject: [PATCH] bugfix --- API/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/API/main.py b/API/main.py index 02dc1ad..a99426b 100755 --- a/API/main.py +++ b/API/main.py @@ -215,7 +215,7 @@ class Matrix(SampleBase): # display circle at position with radius in current color def circle(self, x: int, y: int, r: int): - graphics.DrawCircle(self.canvas, self.font, x, y, r, self.color) + graphics.DrawCircle(self.canvas, x, y, r, self.color) # display rectangle at position with dimensions in current color def rectangle(self, x: int, y: int, w: int, h: int):