Fixed init formatting
This commit is contained in:
parent
3df03a5650
commit
d358c915c3
|
@ -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."""
|
||||
//| ...
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
//| mouse.send_report()"""
|
||||
//|
|
||||
|
||||
//| def __init__(self): -> None
|
||||
//| def __init__(self) -> None:
|
||||
//| """Not currently dynamically supported."""
|
||||
//| ...
|
||||
//|
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 = ...
|
||||
|
|
|
@ -49,7 +49,7 @@
|
|||
//| """
|
||||
//|
|
||||
|
||||
//| def __init__(self): -> None
|
||||
//| def __init__(self) -> None:
|
||||
//| """Not currently dynamically supported. Access the sole instance through `microcontroller.watchdog`."""
|
||||
//| ...
|
||||
//|
|
||||
|
|
Loading…
Reference in New Issue