Skip to content

Commit c695572

Browse files
committed
fix GitHub Actions run #4
1 parent d20a046 commit c695572

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/xulbux/console.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import time as _time
2727
import sys as _sys
2828
import os as _os
29-
import io as _io
29+
import io
3030

3131
try:
3232
from mypy_extensions import mypyc_attr # type: ignore[import]
@@ -1844,7 +1844,7 @@ def _redraw_display(self) -> None:
18441844

18451845

18461846
@mypyc_attr(native_class=False)
1847-
class _InterceptedOutput(_io.StringIO):
1847+
class _InterceptedOutput(io.StringIO):
18481848
"""Custom StringIO that captures output and stores it in the progress bar buffer."""
18491849

18501850
def __init__(self, progress_bar: ProgressBar | Spinner):

0 commit comments

Comments
 (0)