Skip to content

Commit

Permalink
Remove accidental change in RawQuerySet.
Browse files Browse the repository at this point in the history
  • Loading branch information
syastrov committed Feb 28, 2019
1 parent 50fffb2 commit 9bde821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django-stubs/db/models/query.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ class RawQuerySet(Iterable[_T], Sized):
@overload
def __getitem__(self, k: str) -> Any: ...
@overload
def __getitem__(self, k: slice) -> QuerySet[_T, _Row]: ...
def __getitem__(self, k: slice) -> RawQuerySet[_T]: ...
@property
def columns(self) -> List[str]: ...
@property
Expand Down

0 comments on commit 9bde821

Please sign in to comment.