Files
linkding/bookmarks/type_defs.py
Sascha Ißbrücker 1a1092d03a Fix some type hints
2025-03-09 11:30:13 +01:00

15 lines
328 B
Python

"""
Stuff in here is only used for type hints
"""
from django import http
from django.contrib.auth.models import AnonymousUser
from bookmarks.models import GlobalSettings, UserProfile, User
class HttpRequest(http.HttpRequest):
global_settings: GlobalSettings
user_profile: UserProfile
user: User | AnonymousUser