Skip to content

Commit 3fec337

Browse files
committed
correcting_formating
1 parent b2f5799 commit 3fec337

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

adafruit_ds18x20.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ class DS18X20:
4949
from adafruit_onewire.bus import OneWireBus
5050
from adafruit_ds18x20 import DS18X20
5151
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
5354
5455
.. code-block:: python
5556

docs/conf.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,17 @@
2323
# Uncomment the below if you use native CircuitPython modules such as
2424
# digitalio, micropython and busio. List the modules you use. Without it, the
2525
# autodoc module docs will fail to generate with a warning.
26-
autodoc_mock_imports = ["adafruit_onewire",]
26+
autodoc_mock_imports = [
27+
"adafruit_onewire",
28+
]
2729

2830
intersphinx_mapping = {
2931
"python": ("https://docs.python.org/3.4", None),
3032
"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+
),
3237
}
3338

3439
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)