Skip to content

Commit

Permalink
Fixes pytype issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Daverball committed Feb 10, 2025
1 parent 66ce8a2 commit 8635f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/WebOb/webob/headers.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class EnvironHeaders(MutableMapping[str, str]):
def __getitem__(self, hname: str) -> str: ...
def __setitem__(self, hname: str, value: str) -> None: ...
def __delitem__(self, hname: str) -> None: ...
def keys(self) -> filter[str]: ... # type: ignore[override]
def keys(self) -> Iterator[str]: ... # type: ignore[override]
def __contains__(self, hname: object) -> bool: ...
def __len__(self) -> int: ...
def __iter__(self) -> Iterator[str]: ...

0 comments on commit 8635f00

Please sign in to comment.