File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -282,6 +282,7 @@ def handle_manage_selection(self) -> None:
282282 """
283283 Prompts the user to choose an account management option: add funds, reset password, or go back.
284284 Executes the selected action.
285+ :return: None
285286 """
286287 while True :
287288 answer : str = self .console .get_string_input (f"You have ${ self .account .balance } " +
@@ -303,6 +304,12 @@ def handle_manage_selection(self) -> None:
303304 self .console .print_error ("Invalid input. Please try again" )
304305
305306 def get_security_question (self , possible_questions ) -> str :
307+ """
308+ Displays a list of possible security questions and prompts the user to select one by number.
309+
310+ :param possible_questions: A list of strings representing security questions.
311+ :return: The selected security question as a string.
312+ """
306313 self .console .print_colored ("Please select a security question by typing the corresponding number: " )
307314
308315 for i , question in enumerate (possible_questions ):
You can’t perform that action at this time.
0 commit comments