|
@@ -1,5 +1,4 @@
|
|
|
import time
|
|
|
-from typing import NoReturn
|
|
|
|
|
|
from django.conf import settings
|
|
|
from packaging.version import Version
|
|
@@ -23,7 +22,7 @@ class JavaScriptSdkLoader(BaseView):
|
|
|
# Do not let an organization load trigger session, breaking Vary header.
|
|
|
# TODO: This view should probably not be a subclass of BaseView if it doesn't actually use the
|
|
|
# large amount of organization related support utilities, but that ends up being a large refactor.
|
|
|
- def determine_active_organization(self, request: Request, organization_slug=None) -> NoReturn:
|
|
|
+ def determine_active_organization(self, request: Request, organization_slug=None) -> None:
|
|
|
pass
|
|
|
|
|
|
def _get_context(self, key):
|