From f4fb7d9829013602156cf854db020dc73eaf4092 Mon Sep 17 00:00:00 2001 From: John Wiggins Date: Wed, 24 Mar 2021 14:02:50 +0100 Subject: [PATCH] Mention return value for draw_marker_at_points --- kiva/abstract_graphics_context.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kiva/abstract_graphics_context.py b/kiva/abstract_graphics_context.py index 0daa702ea..e4977fc1f 100644 --- a/kiva/abstract_graphics_context.py +++ b/kiva/abstract_graphics_context.py @@ -660,6 +660,11 @@ def draw_marker_at_points(self, point_array, size, marker=SQUARE_MARKER): ``TRIANGLE_MARKER``, ``INVERTED_TRIANGLE_MARKER``, ``PLUS_MARKER``, ``DOT_MARKER``, or ``PIXEL_MARKER``. Each is defined in :py:mod:`kiva.api`. + + Returns + ------- + result : bool + True if markers were drawn, False otherwise. """ @abstractmethod