Skip to content

Commit 3aa4261

Browse files
committed
Change CRLF to LF
1 parent f055600 commit 3aa4261

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

adafruit_ads1x15/analog_in.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
* Author(s): Carter Nelson, adapted from MCP3xxx original by Brent Rubell
1212
"""
1313

14+
from .ads1x15 import ADS1x15
1415
try:
1516
from typing import Optional
16-
from .ads1x15 import ADS1x15
1717
except ImportError:
1818
pass
1919

@@ -24,9 +24,7 @@
2424
class AnalogIn:
2525
"""AnalogIn Mock Implementation for ADC Reads."""
2626

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

0 commit comments

Comments
 (0)