summaryrefslogtreecommitdiff
path: root/shared-bindings/microcontroller/RunMode.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2020-07-27 14:26:54 -0700
committerGitHub <noreply@github.com>2020-07-27 14:26:54 -0700
commit7be9837f732f11424cbcc531728b231b3bceae94 (patch)
treec2be81826b36ef78c09a05be2167360f5f341fab /shared-bindings/microcontroller/RunMode.c
parent7ab5c520e6d52ddad9ca11a72ba0aa170d3d280b (diff)
parentd356581651e4a11dc18787da95e2f96bfde3575d (diff)
Merge pull request #3193 from ciscorn/type-annotations
More type hints
Diffstat (limited to 'shared-bindings/microcontroller/RunMode.c')
-rw-r--r--shared-bindings/microcontroller/RunMode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/microcontroller/RunMode.c b/shared-bindings/microcontroller/RunMode.c
index 38bbb612b..a54f40cac 100644
--- a/shared-bindings/microcontroller/RunMode.c
+++ b/shared-bindings/microcontroller/RunMode.c
@@ -33,18 +33,18 @@
//| """Enum-like class to define the run mode of the microcontroller and
//| CircuitPython."""
//|
-//| NORMAL: RunMode = ...
+//| NORMAL: RunMode
//| """Run CircuitPython as normal.
//|
//| :type microcontroller.RunMode:"""
//|
-//| SAFE_MODE: RunMode = ...
+//| SAFE_MODE: RunMode
//| """Run CircuitPython in safe mode. User code will not be run and the
//| file system will be writeable over USB.
//|
//| :type microcontroller.RunMode:"""
//|
-//| BOOTLOADER: RunMode = ...
+//| BOOTLOADER: RunMode
//| """Run the bootloader.
//|
//| :type microcontroller.RunMode:"""