Fixed init formatting

This commit is contained in:
dherrada 2020-07-03 14:00:06 -04:00
parent 3df03a5650
commit d358c915c3
5 changed files with 5 additions and 5 deletions

View File

@ -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."""
//| ...

View File

@ -39,7 +39,7 @@
//| mouse.send_report()"""
//|
//| def __init__(self): -> None
//| def __init__(self) -> None:
//| """Not currently dynamically supported."""
//| ...
//|

View File

@ -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

View File

@ -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 = ...

View File

@ -49,7 +49,7 @@
//| """
//|
//| def __init__(self): -> None
//| def __init__(self) -> None:
//| """Not currently dynamically supported. Access the sole instance through `microcontroller.watchdog`."""
//| ...
//|