From e6e32e91bc47533dc25bc0db3cd1f555ef29e426 Mon Sep 17 00:00:00 2001 From: Lila Date: Mon, 30 Sep 2024 15:01:31 -0400 Subject: [PATCH] Remove __all__ from plugins.py as it is not needed --- awx/main/utils/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/utils/plugins.py b/awx/main/utils/plugins.py index 0e2390bddbb5..faeb016339f3 100644 --- a/awx/main/utils/plugins.py +++ b/awx/main/utils/plugins.py @@ -4,7 +4,7 @@ """ This module contains the code responsible for extracting the lists of dynamically generated plugins. """ -__all__ = ['CLOUD_PROVIDERS'] + CLOUD_PROVIDERS = []