Merge branch 'stable'

This commit is contained in:
David Lord 2025-11-17 09:45:56 -08:00
commit 96a01e420b
No known key found for this signature in database
GPG key ID: 43368A7AA8CC5926
6 changed files with 691 additions and 529 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: