We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 897d6dd commit 45b0cafCopy full SHA for 45b0caf
adafruit_shell.py
@@ -745,8 +745,8 @@ def get_window_manager(self):
745
)
746
if matches:
747
session_match = matches.group(1)
748
- for key, session in session_match.items():
749
- if session == sessions[key]:
+ for key, session in sessions.items():
+ if session_match == session:
750
return key
751
return None
752
0 commit comments