update dev dependencies

This commit is contained in:
David Lord 2025-11-17 09:43:40 -08:00
parent 85793d6c22
commit da6d075dfd
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
6 changed files with 1030 additions and 633 deletions

View file

@ -27,7 +27,7 @@ class SessionMixin(MutableMapping[str, t.Any]):
@property
def permanent(self) -> bool:
"""This reflects the ``'_permanent'`` key in the dict."""
return self.get("_permanent", False)
return self.get("_permanent", False) # type: ignore[no-any-return]
@permanent.setter
def permanent(self, value: bool) -> None: