Skip to content

Commit

Permalink
Use List not list for better subscript compat
Browse files Browse the repository at this point in the history
  • Loading branch information
palfrey committed Feb 4, 2024
1 parent 4b3e89e commit f55d20a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icecream/icecream.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def get_text_with_indentation(self, node):


def prefixLines(prefix, s, startAtLine=0):
# type: (str, str, int) -> list[str]
# type: (str, str, int) -> List[str]
lines = s.splitlines()

for i in range(startAtLine, len(lines)):
Expand Down

0 comments on commit f55d20a

Please sign in to comment.