fix: remove overly general match for long running commands (#87)

This commit is contained in:
Michael Neale
2024-09-25 16:45:25 +10:00
committed by GitHub
parent 024118218e
commit 31dfd48ac5

View File

@@ -170,7 +170,6 @@ class Developer(Toolkit):
r"\(y/N\)", # Yes/No prompt
r"Press any key to continue", # Awaiting keypress
r"Waiting for input", # General waiting message
r"\?\s", # Prompts starting with '? '
]
compiled_patterns = [re.compile(pattern, re.IGNORECASE) for pattern in interaction_patterns]