Skip to content

Commit d4fba25

Browse files
committed
remove unnecessary @builtinclass decorator
1 parent 6cf6211 commit d4fba25

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-data/unit/fixtures/f_string.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Builtins stub used for format-string-related test cases.
22
# We need str and list, and str needs join and format methods.
33

4-
from typing import TypeVar, Generic, builtinclass, Iterable, Iterator, List, overload
4+
from typing import TypeVar, Generic, Iterable, Iterator, List, overload
55

66
T = TypeVar('T')
77

8-
@builtinclass
98
class object:
109
def __init__(self): pass
1110

@@ -31,6 +30,7 @@ class tuple(Generic[T]): pass
3130
class function: pass
3231
class int:
3332
def __add__(self, i: int) -> int: pass
33+
3434
class float: pass
3535
class bool(int): pass
3636

0 commit comments

Comments
 (0)