From 9b2e050f605701aadb8f6c8a71b01b1f77b9ceda Mon Sep 17 00:00:00 2001 From: Michael Himing Date: Wed, 16 Mar 2022 13:50:44 +1100 Subject: [PATCH] Fix countio.Counter.__init__ type hints --- ports/espressif/esp-idf | 2 +- shared-bindings/countio/Counter.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ports/espressif/esp-idf b/ports/espressif/esp-idf index 121ddb87e5130..2775b6e213a18 160000 --- a/ports/espressif/esp-idf +++ b/ports/espressif/esp-idf @@ -1 +1 @@ -Subproject commit 121ddb87e5130314e4fcc5e9cb260a81b7d30d36 +Subproject commit 2775b6e213a1876dd1abe4923097ca5b437397e3 diff --git a/shared-bindings/countio/Counter.c b/shared-bindings/countio/Counter.c index 077cfd8c97c22..f165eda2027f6 100644 --- a/shared-bindings/countio/Counter.c +++ b/shared-bindings/countio/Counter.c @@ -14,14 +14,14 @@ //| """Count the number of rising- and/or falling-edge transitions on a given pin. //| """ //| -//| def __init__(self, pin: microcontroller.Pin, *, edge: Edge = Edge.FALL, pull: Optional[digitalio.Pull]) -> None: +//| def __init__(self, pin: microcontroller.Pin, *, edge: Edge = Edge.FALL, pull: Optional[digitalio.Pull] = None) -> None: //| """Create a Counter object associated with the given pin that counts //| rising- and/or falling-edge transitions. At least one of ``rise`` and ``fall`` must be True. //| The default is to count only falling edges, and is for historical backward compatibility. //| //| :param ~microcontroller.Pin pin: pin to monitor -//| :param Edge: which edge transitions to count -//| :param digitalio.Pull: enable a pull-up or pull-down if not None +//| :param Edge edge: which edge transitions to count +//| :param Optional[digitalio.Pull] pull: enable a pull-up or pull-down if not None //| //| //| For example::