diff options
| author | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 14:23:34 -0400 |
|---|---|---|
| committer | dherrada <dylan.herrada@adafruit.com> | 2020-07-03 14:23:34 -0400 |
| commit | d0d949cd24dbff5fb382f8c7abf3bae7ba46541a (patch) | |
| tree | a3e4f4faae1858acef2f9095a7bf9650fd8c000c /shared-bindings/ps2io | |
| parent | d358c915c3d27469fc17bdc302dad393d7e28a09 (diff) | |
Made every init return None
Diffstat (limited to 'shared-bindings/ps2io')
| -rw-r--r-- | shared-bindings/ps2io/Ps2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/ps2io/Ps2.c b/shared-bindings/ps2io/Ps2.c index a7f1d9da5..15731ea40 100644 --- a/shared-bindings/ps2io/Ps2.c +++ b/shared-bindings/ps2io/Ps2.c @@ -45,7 +45,7 @@ //| level converters must be used to connect the I/O lines to pins //| of 3.3V boards.""" //| -//| def __init__(self, data_pin: microcontroller.Pin, clock_pin: microcontroller.Pin): +//| def __init__(self, data_pin: microcontroller.Pin, clock_pin: microcontroller.Pin) -> None: //| """Create a Ps2 object associated with the given pins. //| //| :param ~microcontroller.Pin data_pin: Pin tied to data wire. |
