Skip to content

Commit

Permalink
remove unneeded functions from list class in fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnq committed May 27, 2017
1 parent 4822afd commit f586e2d
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test-data/unit/fixtures/f_string.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,7 @@ class list(Iterable[T], Generic[T]):
def __init__(self) -> None: pass
@overload
def __init__(self, x: Iterable[T]) -> None: pass
def __iter__(self) -> Iterator[T]: pass
def __add__(self, x: list[T]) -> list[T]: pass
def __mul__(self, x: int) -> list[T]: pass
def __getitem__(self, x: int) -> T: pass
def append(self, x: T) -> None: pass
def extend(self, x: Iterable[T]) -> None: pass

class tuple(Generic[T]): pass

Expand Down

0 comments on commit f586e2d

Please sign in to comment.