Skip to content

Commit f909bdd

Browse files
committed
Fix missing imports
1 parent 4192ac9 commit f909bdd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/views.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import os
2+
3+
import requests
24
from django.utils import timezone
35

46
from urllib.parse import urljoin
@@ -15,11 +17,14 @@
1517
HttpResponse,
1618
HttpResponseNotFound,
1719
HttpResponseRedirect,
20+
HttpRequest,
1821
)
1922
from django.shortcuts import redirect
2023
from django.template.loader import render_to_string
2124
from django.urls import reverse
25+
from django.utils.decorators import method_decorator
2226
from django.views import View
27+
from django.views.decorators.cache import never_cache
2328
from django.views.generic import TemplateView
2429

2530
from config.settings import ENABLE_DB_CACHE

0 commit comments

Comments
 (0)