diff --git a/backend/app_be/views/rest_api.py b/backend/app_be/views/rest_api.py
index df04107..e6bb735 100644
--- a/backend/app_be/views/rest_api.py
+++ b/backend/app_be/views/rest_api.py
@@ -4,12 +4,11 @@ from django.http import JsonResponse
from rest_framework.decorators import api_view
from py_jwt_validator import PyJwtValidator, PyJwtException
-import requests
logger = logging.getLogger(__name__)
-def authorize(request: requests.Request):
+def authorize(request):
logger.debug('Validating request: {}'.format(request))
if 'Authorization' not in request.headers:
@@ -45,7 +44,7 @@ def authorize(request: requests.Request):
class LoginClass:
@staticmethod
@api_view(['GET'])
- def login(request: requests.Request):
+ def login(request):
user_sub = authorize(request)
if not user_sub:
return JsonResponse({}, status=401)
diff --git a/frontend/src/app/component/einstellungen/einstellungen.component.html b/frontend/src/app/component/einstellungen/einstellungen.component.html
index 189ce06..7eabee9 100644
--- a/frontend/src/app/component/einstellungen/einstellungen.component.html
+++ b/frontend/src/app/component/einstellungen/einstellungen.component.html
@@ -1,7 +1,7 @@