Skip to content

Commit 15f0379

Browse files
committed
Reformatting by black
1 parent 3aa4261 commit 15f0379

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

adafruit_ads1x15/analog_in.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"""
1313

1414
from .ads1x15 import ADS1x15
15+
1516
try:
1617
from typing import Optional
1718
except ImportError:
@@ -24,7 +25,9 @@
2425
class AnalogIn:
2526
"""AnalogIn Mock Implementation for ADC Reads."""
2627

27-
def __init__(self, ads: ADS1x15, positive_pin: int, negative_pin: Optional[int] = None):
28+
def __init__(
29+
self, ads: ADS1x15, positive_pin: int, negative_pin: Optional[int] = None
30+
):
2831
"""AnalogIn
2932
3033
:param ads: The ads object.

0 commit comments

Comments
 (0)