Skip to content

Commit d358c91

Browse files
committed
Fixed init formatting
1 parent 3df03a5 commit d358c91

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

shared-bindings/supervisor/Runtime.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
//| print("Hello World!")"""
4040
//|
4141

42-
//| def __init__(self): -> None
42+
//| def __init__(self) -> None:
4343
//| """You cannot create an instance of `supervisor.Runtime`.
4444
//| Use `supervisor.runtime` to access the sole instance available."""
4545
//| ...

shared-bindings/usb_hid/Device.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
//| mouse.send_report()"""
4040
//|
4141

42-
//| def __init__(self): -> None
42+
//| def __init__(self) -> None:
4343
//| """Not currently dynamically supported."""
4444
//| ...
4545
//|

shared-bindings/usb_midi/PortOut.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//| class PortOut:
3939
//| """Sends midi messages to a computer over USB"""
4040
//|
41-
//| def __init__(self): -> None
41+
//| def __init__(self) -> None:
4242
//| """You cannot create an instance of `usb_midi.PortOut`.
4343
//|
4444
//| PortOut objects are constructed for every corresponding entry in the USB

shared-bindings/watchdog/WatchDogMode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
//| class WatchDogMode:
3030
//| """run state of the watchdog timer"""
3131
//|
32-
//| def __init__(self): -> None
32+
//| def __init__(self) -> None:
3333
//| """Enum-like class to define the run mode of the watchdog timer."""
3434
//|
3535
//| RAISE: watchdog.WatchDogMode = ...

shared-bindings/watchdog/WatchDogTimer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
//| """
5050
//|
5151

52-
//| def __init__(self): -> None
52+
//| def __init__(self) -> None:
5353
//| """Not currently dynamically supported. Access the sole instance through `microcontroller.watchdog`."""
5454
//| ...
5555
//|

0 commit comments

Comments
 (0)