From daeac6005e98a72ba3d3006e705732cd4a491f2d Mon Sep 17 00:00:00 2001 From: David Lechner Date: Mon, 18 May 2020 13:26:28 -0500 Subject: [PATCH] api: media.ev3dev.Image.draw_circle: fix r arg This removes the default value from the `r` parameter (this was probably copy/paste error from the `draw_box` method). The actual implementation does not have a default value. --- pybricks/media/ev3dev.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pybricks/media/ev3dev.py b/pybricks/media/ev3dev.py index 548cbf3..74f3d57 100644 --- a/pybricks/media/ev3dev.py +++ b/pybricks/media/ev3dev.py @@ -95,7 +95,7 @@ class Image: """ pass - def draw_circle(self, x, y, r=0, fill=False, color=_Color.BLACK): + def draw_circle(self, x, y, r, fill=False, color=_Color.BLACK): """Draws a circle on |this image|. Arguments: