Skip to content

Commit

Permalink
Fix countio.Counter.__init__ type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
prplz committed Mar 16, 2022
1 parent af9f80d commit 9b2e050
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ports/espressif/esp-idf
Submodule esp-idf updated 596 files
6 changes: 3 additions & 3 deletions shared-bindings/countio/Counter.c
Original file line number Diff line number Diff line change
Expand Up @@ -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::
Expand Down

0 comments on commit 9b2e050

Please sign in to comment.