mirror of
https://github.com/pybricks/pybricks-api.git
synced 2026-09-11 17:14:41 +00:00
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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user