We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d20a046 commit c695572Copy full SHA for c695572
1 file changed
src/xulbux/console.py
@@ -26,7 +26,7 @@
26
import time as _time
27
import sys as _sys
28
import os as _os
29
-import io as _io
+import io
30
31
try:
32
from mypy_extensions import mypyc_attr # type: ignore[import]
@@ -1844,7 +1844,7 @@ def _redraw_display(self) -> None:
1844
1845
1846
@mypyc_attr(native_class=False)
1847
-class _InterceptedOutput(_io.StringIO):
+class _InterceptedOutput(io.StringIO):
1848
"""Custom StringIO that captures output and stores it in the progress bar buffer."""
1849
1850
def __init__(self, progress_bar: ProgressBar | Spinner):
0 commit comments