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.
This commit is contained in:
David Lechner
2020-05-18 13:26:28 -05:00
committed by GitHub
parent 342e312abb
commit daeac6005e
+1 -1
View File
@@ -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: