]> Repositories - Adafruit_Blinka-hackapet.git/commitdiff
Merge pull request #510 from lesamouraipourpre/docs
authorMelissa LeBlanc-Williams <melissa@adafruit.com>
Tue, 21 Sep 2021 17:40:50 +0000 (10:40 -0700)
committerGitHub <noreply@github.com>
Tue, 21 Sep 2021 17:40:50 +0000 (10:40 -0700)
Add missing modules to the API documentation

1  2 
src/keypad.py
src/micropython.py

diff --combined src/keypad.py
index 97c58e782e9dc9f84ddca6f33e75f2cf485c73bc,893ed4e318c51275d03e90a3331abf3a60d16285..a156d6e5add4fd0b951ca880d5e33b3618811292
@@@ -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 5f369e3f0df022d3594edd97633e5093ed303266,b380dcb885833d4f2785dec8b096041548677690..843d5a5704f0b517b5064dca524d011e7951b4ca
@@@ -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