Skip to content

Commit 5163618

Browse files
committed
Added type hints to watchdog
1 parent 9c842c5 commit 5163618

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-bindings/watchdog/WatchDogMode.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232
//| def __init__(self):
3333
//| """Enum-like class to define the run mode of the watchdog timer."""
3434
//|
35-
//| RAISE: Any = ...
35+
//| RAISE: watchdog.WatchDogMode = ...
3636
//| """Raise an exception when the WatchDogTimer expires.
3737
//|
3838
//| :type watchdog.WatchDogMode:"""
3939
//|
40-
//| RESET: Any = ...
40+
//| RESET: watchdog.WatchDogMode = ...
4141
//| """Reset the system if the WatchDogTimer expires.
4242
//|
4343
//| :type watchdog.WatchDogMode:"""

0 commit comments

Comments
 (0)