File tree 2 files changed +9
-3
lines changed 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ class DS18X20:
49
49
from adafruit_onewire.bus import OneWireBus
50
50
from adafruit_ds18x20 import DS18X20
51
51
52
- Once this is done you can define your :class:`adafruit_onewire.bus.OneWireBus` object and define your sensor object
52
+ Once this is done you can define your :class:`adafruit_onewire.bus.OneWireBus`
53
+ object and define your sensor object
53
54
54
55
.. code-block:: python
55
56
Original file line number Diff line number Diff line change 23
23
# Uncomment the below if you use native CircuitPython modules such as
24
24
# digitalio, micropython and busio. List the modules you use. Without it, the
25
25
# autodoc module docs will fail to generate with a warning.
26
- autodoc_mock_imports = ["adafruit_onewire" ,]
26
+ autodoc_mock_imports = [
27
+ "adafruit_onewire" ,
28
+ ]
27
29
28
30
intersphinx_mapping = {
29
31
"python" : ("https://docs.python.org/3.4" , None ),
30
32
"CircuitPython" : ("https://circuitpython.readthedocs.io/en/latest/" , None ),
31
- "adafruit_onewire" : ("https://circuitpython.readthedocs.io/projects/onewire/en/latest/" , None ),
33
+ "adafruit_onewire" : (
34
+ "https://circuitpython.readthedocs.io/projects/onewire/en/latest/" ,
35
+ None ,
36
+ ),
32
37
}
33
38
34
39
# Add any paths that contain templates here, relative to this directory.
You can’t perform that action at this time.
0 commit comments