Skip to content

Commit

Permalink
Bugfix + clarifying comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
teald committed Oct 9, 2023
1 parent 63821e9 commit fb4eb5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion geminidr/interactive/controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,8 @@ def update_helpmaskingtext(self):
"<b>U</b> - Unmask selected/closest<br/></br>"
)

if self.handlers - ["m", "u"]:
# Check for other handlers.
if self.handlers.keys() - ["m", "u"]:
if "m" in self.handlers:
self.helpmaskingtext += "<b>Other Commands</b><br/>"

Expand Down

0 comments on commit fb4eb5c

Please sign in to comment.