Skip to content

Commit 535f67c

Browse files
Changed APIView.headers to Dict[str, str] (#114)
1 parent c9196e3 commit 535f67c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rest_framework-stubs/views.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class APIView(View):
3030
authentication_classes: Sequence[Type[BaseAuthentication]] = ...
3131
content_negotiation_class: Optional[str] = ...
3232
format_kwarg: Any = ...
33-
headers: Any = ...
33+
headers: Dict[str, str] = ...
3434
kwargs: Any = ...
3535
metadata_class: Optional[str] = ...
3636
parser_classes: Sequence[Type[BaseParser]] = ...

0 commit comments

Comments
 (0)