Files
django-stubs/django/contrib/sessions/base_session.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

6 lines
135 B
Python

from typing import Dict
class AbstractBaseSession:
def __str__(self) -> str: ...
def get_decoded(self) -> Dict[str, int]: ...