diff --git a/authentik/tenants/utils.py b/authentik/tenants/utils.py index d2385ed84..aabc2e931 100644 --- a/authentik/tenants/utils.py +++ b/authentik/tenants/utils.py @@ -4,6 +4,6 @@ from django.db import connection from authentik.tenants.models import Tenant -def get_current_tenant() -> Tenant | None: +def get_current_tenant() -> Tenant: """Get tenant for current request""" return Tenant.objects.get(schema_name=connection.schema_name)