Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Dec 24, 2022
1 parent 1f3f18c commit c8c116c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rich/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,7 @@ def _check_buffer(self) -> None:
if len(text) <= MAX_WRITE:
write(text)
else:
batch: list[str] = []
batch: List[str] = []
batch_append = batch.append
size = 0
for line in text.splitlines(True):
Expand Down

0 comments on commit c8c116c

Please sign in to comment.