mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 08:17:08 +08:00
7 lines
182 B
Python
7 lines
182 B
Python
from django.contrib.sessions.backends.db import SessionStore
|
|
from typing import Type
|
|
|
|
|
|
class Session:
|
|
@classmethod
|
|
def get_session_store_class(cls) -> Type[SessionStore]: ... |