Skip to content

Commit

Permalink
Fix overload
Browse files Browse the repository at this point in the history
  • Loading branch information
Viicos committed Aug 26, 2024
1 parent 59d1d78 commit ff4183c
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions django-stubs/contrib/sessions/backends/base.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ class SessionBase(dict[str, Any]):
@overload
async def aget(self, key: str, default: Any) -> Any: ...
@overload
async def aget(self, key: str, default: _T) -> Any | _T: ... # type: ignore[misc]
@overload
async def apop(self, key: str) -> Any: ...
@overload
async def apop(self, key: str, default: Any) -> Any: ...
Expand Down

0 comments on commit ff4183c

Please sign in to comment.