summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-03 11:42:07 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-03 11:42:07 -0400
commit5163618d23f52c7f351b2a7d416e5dd4f434d9dc (patch)
tree7c200bf4e08fd2ce33404c8ed0bc3218c8c049ad
parent9c842c5a670117751785edae8f6355cae8f27ced (diff)
Added type hints to watchdog
-rw-r--r--shared-bindings/watchdog/WatchDogMode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-bindings/watchdog/WatchDogMode.c b/shared-bindings/watchdog/WatchDogMode.c
index 293ee043d..d867ba524 100644
--- a/shared-bindings/watchdog/WatchDogMode.c
+++ b/shared-bindings/watchdog/WatchDogMode.c
@@ -32,12 +32,12 @@
//| def __init__(self):
//| """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:"""