We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6e513c commit c2e3facCopy full SHA for c2e3fac
bpython/test/test_inspection.py
@@ -2,6 +2,7 @@
2
import os
3
import sys
4
import unittest
5
+from typing import List
6
7
from bpython import inspection
8
from bpython.test.fodder import encoding_ascii
@@ -158,7 +159,7 @@ def fun(number, lst=[]):
158
159
"""
160
return lst + [number]
161
- def fun_annotations(number: int, lst: list[int] = []) -> list[int]:
162
+ def fun_annotations(number: int, lst: List[int] = []) -> List[int]:
163
164
Return a list of numbers
165
0 commit comments