mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-10 14:01:56 +08:00
* add import_all.test builder * fix errors * fix typechecking errors * fix migrations typechecking
10 lines
283 B
Python
10 lines
283 B
Python
from typing import Optional
|
|
|
|
from django.contrib.sessions.backends.base import SessionBase
|
|
|
|
class SessionStore(SessionBase):
|
|
storage_path: str = ...
|
|
file_prefix: str = ...
|
|
def __init__(self, session_key: Optional[str] = ...) -> None: ...
|
|
def clean(self) -> None: ...
|