(self, _)
| 3 | |
| 4 | class GetQuestionNode(Node): |
| 5 | def exec(self, _): |
| 6 | # Get question directly from user input |
| 7 | user_question = input("Enter your question: ") |
| 8 | return user_question |
| 9 | |
| 10 | def post(self, shared, prep_res, exec_res): |
| 11 | # Store the user's question |
nothing calls this directly
no outgoing calls
no test coverage detected