From 6b2fcf6bbe54d35a438933dd6f68e9a0302b8fc0 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Thu, 15 Feb 2018 17:41:40 -0800 Subject: [PATCH] Fix typo in mocks --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 0464af3..013ccb4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,7 +18,7 @@ # Uncomment the below if you use native CircuitPython modules such as # digitalio, micropython and busio. List the modules you use. Without it, the # autodoc module docs will fail to generate with a warning. -autodoc_mock_imports = ["micropython", "ustruct", "adfruit_bus_device", "adafruit_bus_device.i2c_device"] +autodoc_mock_imports = ["micropython", "ustruct", "adafruit_bus_device", "adafruit_bus_device.i2c_device"] intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'BusDevice': ('https://circuitpython.readthedocs.io/projects/bus_device/en/latest/', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}