Skip to content

Commit 3513655

Browse files
ncguktannewt
authored andcommitted
Clarify code indents (#2)
Clarify code indents
1 parent ccb7160 commit 3513655

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

README.rst

+3-8
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,10 @@ Then, construct the thermometer class:
3232
3333
# Do one reading
3434
with busio.I2C(SCL, SDA) as i2c:
35-
t = adafruit_mcp9808.MCP9808(i2c)
36-
37-
Finally, read the temperature property.
38-
39-
.. code-block:: python
40-
41-
# and print it out
42-
print(t.temperature)
35+
t = adafruit_mcp9808.MCP9808(i2c)
4336
37+
# Finally, read the temperature property and print it out
38+
print(t.temperature)
4439
4540
API Reference
4641
=============

0 commit comments

Comments
 (0)