Skip to content

Commit

Permalink
uart fixes (argument fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
fivesixzero committed Nov 28, 2020
1 parent ee904e4 commit 08d4526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_pm25/uart.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class PM25_UART(PM25):
A driver for the PM2.5 Air quality sensor over UART
"""

def __init__(self, uart, set_pin=None, reset_pin=None, mode="passive"):
def __init__(self, uart, reset_pin=None, set_pin=None, mode="passive"):
self._uart = uart
self._reset_pin = reset_pin
self._set_pin = set_pin
Expand Down

0 comments on commit 08d4526

Please sign in to comment.