diff --git a/source/inputCore.py b/source/inputCore.py index 413ba2ae9a3..54a638c739f 100644 --- a/source/inputCore.py +++ b/source/inputCore.py @@ -456,16 +456,16 @@ def __eq__(self, other: Any) -> bool: """ Notifies when a raw keyboard event is received, before any NVDA processing. Handlers can decide whether the key should be processed by NVDA and/or passed to the OS. -@param vkCode: The virtual key code -@type vkCode: int -@param scanCode: The scan code -@type scanCode: int -@param extended: Whether this is an extended key -@type extended: bool -@param pressed: Whether this is a key press or release -@type pressed: bool -@return: True to allow normal processing, False to block the key -@rtype: bool +:param vkCode: The virtual key code +:type vkCode: int +:param scanCode: The scan code +:type scanCode: int +:param extended: Whether this is an extended key +:type extended: bool +:param pressed: Whether this is a key press or release +:type pressed: bool +:return: True to allow normal processing, False to block the key +:rtype: bool """ decide_executeGesture = extensionPoints.Decider() diff --git a/source/speech/extensions.py b/source/speech/extensions.py index f8dd885ba4a..ae74f3115a1 100644 --- a/source/speech/extensions.py +++ b/source/speech/extensions.py @@ -26,8 +26,8 @@ """ Notifies when speech is paused. -@param switch: True if speech is paused, False if speech is resumed. -@type switch: bool +:param switch: True if speech is paused, False if speech is resumed. +:type switch: bool """ pre_speech = Action()