Skip to content

Commit

Permalink
typing
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Jul 28, 2023
1 parent 96d6128 commit 3215e61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rich/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -822,7 +822,7 @@ def expand_tabs(self, tab_size: Optional[int] = None) -> None:
assert tab_size is not None
result = self.blank_copy()

new_text: list[Text] = []
new_text: List[Text] = []
append = new_text.append

for line in self.split("\n", include_separator=True):
Expand Down

0 comments on commit 3215e61

Please sign in to comment.