Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove whitespace surrounding parentheses
  • Loading branch information
jonathandung authored Mar 19, 2026
commit c51e72c4d983de238b919674791783d58e1ef35a
2 changes: 1 addition & 1 deletion Lib/curses/has_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def has_key(ch):

#Check the current terminal description for that capability;
#if present, return true, else return false.
if _curses.tigetstr( capability_name ):
if _curses.tigetstr(capability_name):
Comment thread
aisk marked this conversation as resolved.
return True
else:
return False
Expand Down
Loading