Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix countio.Counter.__init__ type hints #6162

Merged
merged 1 commit into from
Mar 17, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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