From 6ddd3cc779ec59106458fa96b613da5055e65ab9 Mon Sep 17 00:00:00 2001 From: Tobias Genannt Date: Thu, 19 Dec 2024 07:44:38 +0100 Subject: [PATCH] #18260 - Add context managers to registry --- netbox/core/apps.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/core/apps.py b/netbox/core/apps.py index 0811e5cb20e..9674860b973 100644 --- a/netbox/core/apps.py +++ b/netbox/core/apps.py @@ -21,6 +21,7 @@ def ready(self): from core.api import schema # noqa: F401 from netbox.models.features import register_models from . import data_backends, events, search # noqa: F401 + from netbox import context_managers # noqa: F401 # Register models register_models(*self.get_models())