@@ -3131,7 +3131,7 @@ class TestMyAppCase(Cmd2TestCase):
31313131 runner = unittest .TextTestRunner ()
31323132 runner .run (testcase )
31333133
3134- def _clear_input_lines_str (self ) -> str :
3134+ def _clear_input_lines_str (self ) -> str : # pragma: no cover
31353135 """
31363136 Returns a string that if printed will clear the prompt and input lines in the terminal,
31373137 leaving the cursor at the beginning of the first input line
@@ -3175,7 +3175,7 @@ def _clear_input_lines_str(self) -> str:
31753175
31763176 return terminal_str
31773177
3178- def async_alert (self , alert_msg : str , new_prompt : Optional [str ] = None ) -> None :
3178+ def async_alert (self , alert_msg : str , new_prompt : Optional [str ] = None ) -> None : # pragma: no cover
31793179 """
31803180 Used to display an important message to the user while they are at the prompt in between commands.
31813181 To the user it appears as if an alert message is printed above the prompt and their current input
@@ -3218,7 +3218,7 @@ def async_alert(self, alert_msg: str, new_prompt: Optional[str] = None) -> None:
32183218 else :
32193219 raise RuntimeError ("another thread holds terminal_lock" )
32203220
3221- def async_update_prompt (self , new_prompt : str ) -> None :
3221+ def async_update_prompt (self , new_prompt : str ) -> None : # pragma: no cover
32223222 """
32233223 Updates the prompt while the user is still typing at it. This is good for alerting the user to system
32243224 changes dynamically in between commands. For instance you could alter the color of the prompt to indicate
@@ -3260,7 +3260,7 @@ def async_update_prompt(self, new_prompt: str) -> None:
32603260 raise RuntimeError ("another thread holds terminal_lock" )
32613261
32623262 @staticmethod
3263- def set_window_title (title : str ) -> None :
3263+ def set_window_title (title : str ) -> None : # pragma: no cover
32643264 """
32653265 Sets the terminal window title
32663266 :param title: the new window title
0 commit comments