Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Sean Budd <[email protected]>
  • Loading branch information
ctoth and seanbudd authored Nov 30, 2024
1 parent f43c0cc commit f2db892
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions source/inputCore.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions source/speech/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit f2db892

Please sign in to comment.