@@ -26,23 +26,23 @@ def __init__(
2626 )
2727
2828 def fetch_output (self ) -> str :
29- return cast (BufferedOutput , self ._output ).fetch ()
29+ return cast (" BufferedOutput" , self ._output ).fetch ()
3030
3131 def fetch_error (self ) -> str :
32- return cast (BufferedOutput , self ._error_output ).fetch ()
32+ return cast (" BufferedOutput" , self ._error_output ).fetch ()
3333
3434 def clear (self ) -> None :
35- cast (BufferedOutput , self ._output ).clear ()
36- cast (BufferedOutput , self ._error_output ).clear ()
35+ cast (" BufferedOutput" , self ._output ).clear ()
36+ cast (" BufferedOutput" , self ._error_output ).clear ()
3737
3838 def clear_output (self ) -> None :
39- cast (BufferedOutput , self ._output ).clear ()
39+ cast (" BufferedOutput" , self ._output ).clear ()
4040
4141 def clear_error (self ) -> None :
42- cast (BufferedOutput , self ._error_output ).clear ()
42+ cast (" BufferedOutput" , self ._error_output ).clear ()
4343
4444 def supports_utf8 (self ) -> bool :
45- return cast (BufferedOutput , self ._output ).supports_utf8 ()
45+ return cast (" BufferedOutput" , self ._output ).supports_utf8 ()
4646
4747 def clear_user_input (self ) -> None :
4848 self ._input .stream .truncate (0 )
0 commit comments