summaryrefslogtreecommitdiff
path: root/shared-bindings/_pixelbuf
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-03 16:03:19 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-03 16:03:19 -0400
commitbce77adecdbfd36006dbc97a50b67d05720c8135 (patch)
tree31d1e1e80a04ddcd6c6261df9eb780d2ade650f8 /shared-bindings/_pixelbuf
parent9911b64fa13442f552a9968cdf40d926b98de6f8 (diff)
Added type hints previously missed
Diffstat (limited to 'shared-bindings/_pixelbuf')
-rw-r--r--shared-bindings/_pixelbuf/__init__.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/_pixelbuf/__init__.c b/shared-bindings/_pixelbuf/__init__.c
index bfd479fde..6038fdfdc 100644
--- a/shared-bindings/_pixelbuf/__init__.c
+++ b/shared-bindings/_pixelbuf/__init__.c
@@ -41,7 +41,7 @@
//| Byteorders are configured with strings, such as "RGB" or "RGBD"."""
// TODO: Pull in docs from pypixelbuf.
-//| def colorwheel(n: int) -> Any:
+//| def colorwheel(n: int) -> int:
//| """C implementation of the common wheel() function found in many examples.
//| Returns the colorwheel RGB value as an integer value for n (usable in :py:class:`PixelBuf`, neopixel, and dotstar)."""
//| ...