summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller/Pin.c
diff options
context:
space:
mode:
authorroot <siehputz@gmail.com>2020-07-24 23:28:41 -0500
committerroot <siehputz@gmail.com>2020-07-24 23:28:41 -0500
commitc4817968eee29257cbeaabace0a29fcbed1c3b47 (patch)
tree25108d321af3697e608270872e59b5aec2043cc5 /shared-bindings/microcontroller/Pin.c
parentd9503e579b72d8bad6f556589da50ba9833b4574 (diff)
parent3dfed3c4aa52d06bd2eb1c28d0a1916821cc3f80 (diff)
Merge branch 'opt-test' of https://github.com/DavePutz/circuitpython into opt-test
Diffstat (limited to 'shared-bindings/microcontroller/Pin.c')
-rw-r--r--shared-bindings/microcontroller/Pin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/microcontroller/Pin.c b/shared-bindings/microcontroller/Pin.c
index d5b971ae5..931c0b4c4 100644
--- a/shared-bindings/microcontroller/Pin.c
+++ b/shared-bindings/microcontroller/Pin.c
@@ -36,7 +36,7 @@
//| class Pin:
//| """Identifies an IO pin on the microcontroller."""
//|
-//| def __init__(self, ):
+//| def __init__(self) -> None:
//| """Identifies an IO pin on the microcontroller. They are fixed by the
//| hardware so they cannot be constructed on demand. Instead, use
//| `board` or `microcontroller.pin` to reference the desired pin."""