From: Melissa LeBlanc-Williams Date: Tue, 21 Sep 2021 17:40:50 +0000 (-0700) Subject: Merge pull request #510 from lesamouraipourpre/docs X-Git-Tag: 6.13.1~2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/15e4a44ae24b0d876961dea3d0a221b0317415f2?ds=inline;hp=-c Merge pull request #510 from lesamouraipourpre/docs Add missing modules to the API documentation --- 15e4a44ae24b0d876961dea3d0a221b0317415f2 diff --combined src/keypad.py index 97c58e7,893ed4e..a156d6e --- a/src/keypad.py +++ b/src/keypad.py @@@ -6,6 -6,11 +6,6 @@@ See `CircuitPython:keypad` in CircuitPy * Author(s): Melissa LeBlanc-Williams """ - -__version__ = "0.0.0-auto.0" -__repo__ = "https://github.com/adafruit/Adafruit_Blinka.git" - - import time import threading from collections import deque @@@ -462,7 -467,7 +462,7 @@@ class ShiftRegisterKeys(_KeysBase) @property def events(self): - """The `EventQueue` associated with this `Keys` object. (read-only)""" + """The ``EventQueue`` associated with this `Keys` object. (read-only)""" return self._events def _keypad_shiftregisterkeys_scan(self): diff --combined src/micropython.py index 5f369e3,b380dcb..843d5a5 --- a/src/micropython.py +++ b/src/micropython.py @@@ -1,11 -1,15 +1,11 @@@ """ `micropython` - MicroPython Specific Decorator Functions - ================================================= + ======================================================== * Author(s): cefn """ -__version__ = "0.0.0-auto.0" -__repo__ = "https://github.com/adafruit/Adafruit_Blinka.git" - - def const(x): "Emulate making a constant" return x