Update session_manager.py

This commit is contained in:
Edwin Jose 2025-09-04 16:58:40 -04:00
parent f97f12b3af
commit db3e9a3270

View file

@ -38,17 +38,6 @@ class AnonymousUser(User):
provider="none",
)
class SystemUser(User):
"""System user"""
def __init__(self):
super().__init__(
user_id="system",
email="system@localhost",
name="System User",
picture=None,
provider="system",
)
class SessionManager: