summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshared-bindings/supervisor/Runtime.c2
-rw-r--r--shared-bindings/usb_hid/Device.c2
-rw-r--r--shared-bindings/usb_midi/PortOut.c2
-rw-r--r--shared-bindings/watchdog/WatchDogMode.c2
-rw-r--r--shared-bindings/watchdog/WatchDogTimer.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/shared-bindings/supervisor/Runtime.c b/shared-bindings/supervisor/Runtime.c
index ba72bcd03..689c299ef 100755
--- a/shared-bindings/supervisor/Runtime.c
+++ b/shared-bindings/supervisor/Runtime.c
@@ -39,7 +39,7 @@
//| print("Hello World!")"""
//|
-//| def __init__(self): -> None
+//| def __init__(self) -> None:
//| """You cannot create an instance of `supervisor.Runtime`.
//| Use `supervisor.runtime` to access the sole instance available."""
//| ...
diff --git a/shared-bindings/usb_hid/Device.c b/shared-bindings/usb_hid/Device.c
index f7323accf..d071716ef 100644
--- a/shared-bindings/usb_hid/Device.c
+++ b/shared-bindings/usb_hid/Device.c
@@ -39,7 +39,7 @@
//| mouse.send_report()"""
//|
-//| def __init__(self): -> None
+//| def __init__(self) -> None:
//| """Not currently dynamically supported."""
//| ...
//|
diff --git a/shared-bindings/usb_midi/PortOut.c b/shared-bindings/usb_midi/PortOut.c
index e820c0a36..ce7062ed3 100644
--- a/shared-bindings/usb_midi/PortOut.c
+++ b/shared-bindings/usb_midi/PortOut.c
@@ -38,7 +38,7 @@
//| class PortOut:
//| """Sends midi messages to a computer over USB"""
//|
-//| def __init__(self): -> None
+//| def __init__(self) -> None:
//| """You cannot create an instance of `usb_midi.PortOut`.
//|
//| PortOut objects are constructed for every corresponding entry in the USB
diff --git a/shared-bindings/watchdog/WatchDogMode.c b/shared-bindings/watchdog/WatchDogMode.c
index 6c3a70c1e..9b9999d8b 100644
--- a/shared-bindings/watchdog/WatchDogMode.c
+++ b/shared-bindings/watchdog/WatchDogMode.c
@@ -29,7 +29,7 @@
//| class WatchDogMode:
//| """run state of the watchdog timer"""
//|
-//| def __init__(self): -> None
+//| def __init__(self) -> None:
//| """Enum-like class to define the run mode of the watchdog timer."""
//|
//| RAISE: watchdog.WatchDogMode = ...
diff --git a/shared-bindings/watchdog/WatchDogTimer.c b/shared-bindings/watchdog/WatchDogTimer.c
index ba1e43b35..20bead106 100644
--- a/shared-bindings/watchdog/WatchDogTimer.c
+++ b/shared-bindings/watchdog/WatchDogTimer.c
@@ -49,7 +49,7 @@
//| """
//|
-//| def __init__(self): -> None
+//| def __init__(self) -> None:
//| """Not currently dynamically supported. Access the sole instance through `microcontroller.watchdog`."""
//| ...
//|