Skip to content

Commit c8c116c

Browse files
committed
fix typing
1 parent 1f3f18c commit c8c116c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rich/console.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2034,7 +2034,7 @@ def _check_buffer(self) -> None:
20342034
if len(text) <= MAX_WRITE:
20352035
write(text)
20362036
else:
2037-
batch: list[str] = []
2037+
batch: List[str] = []
20382038
batch_append = batch.append
20392039
size = 0
20402040
for line in text.splitlines(True):

0 commit comments

Comments
 (0)