summaryrefslogtreecommitdiff
path: root/shared-bindings/watchdog/WatchDogMode.c
diff options
context:
space:
mode:
authorScott Shawcroft <scott@adafruit.com>2020-07-22 13:48:45 -0700
committerGitHub <noreply@github.com>2020-07-22 13:48:45 -0700
commit02b71e013adda29cd67172a3782fda8fa5da0bba (patch)
tree4a0230aa6e19e9392908e1b23e83f5e9a4d93128 /shared-bindings/watchdog/WatchDogMode.c
parent05a10f7905bfb77f3d5dff2525c9d10375801329 (diff)
parent9e3fa863f1d0dcf8eae54554ffc7016eaa6de157 (diff)
Merge pull request #3107 from dherrada/type_hints
Adding type hints
Diffstat (limited to 'shared-bindings/watchdog/WatchDogMode.c')
-rw-r--r--shared-bindings/watchdog/WatchDogMode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/shared-bindings/watchdog/WatchDogMode.c b/shared-bindings/watchdog/WatchDogMode.c
index 369454c11..9b9999d8b 100644
--- a/shared-bindings/watchdog/WatchDogMode.c
+++ b/shared-bindings/watchdog/WatchDogMode.c
@@ -29,15 +29,15 @@
//| class WatchDogMode:
//| """run state of the watchdog timer"""
//|
-//| def __init__(self, ):
+//| def __init__(self) -> None:
//| """Enum-like class to define the run mode of the watchdog timer."""
//|
-//| RAISE: Any = ...
+//| RAISE: watchdog.WatchDogMode = ...
//| """Raise an exception when the WatchDogTimer expires.
//|
//| :type watchdog.WatchDogMode:"""
//|
-//| RESET: Any = ...
+//| RESET: watchdog.WatchDogMode = ...
//| """Reset the system if the WatchDogTimer expires.
//|
//| :type watchdog.WatchDogMode:"""