From 815712ac8e887b70793835dd14da533575282a57 Mon Sep 17 00:00:00 2001 From: Matt Hillsdon Date: Thu, 2 Nov 2023 12:09:58 +0000 Subject: [PATCH] NeoPixel fill is not on V1 Closes https://github.com/microbit-foundation/micropython-microbit-stubs/issues/92 --- lang/en/typeshed/stdlib/neopixel.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/en/typeshed/stdlib/neopixel.pyi b/lang/en/typeshed/stdlib/neopixel.pyi index 3bfe076..2d5a749 100644 --- a/lang/en/typeshed/stdlib/neopixel.pyi +++ b/lang/en/typeshed/stdlib/neopixel.pyi @@ -50,7 +50,7 @@ class NeoPixel: """ ... def fill(self, colour: Tuple[int, ...]) -> None: - """Colour all pixels a given RGB/RGBW value. + """Colour all pixels a given RGB/RGBW value (micro:bit V2 only). Example: ``np.fill((0, 0, 255))``