From 3ad7913353cdf14b2329340e6522b1f19b9ae183 Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Fri, 23 Sep 2022 12:12:27 -0400 Subject: [PATCH] Fix remove unnecessary comment --- awx/api/views/instance_install_bundle.py | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/api/views/instance_install_bundle.py b/awx/api/views/instance_install_bundle.py index d85240cea080..455da25ddfaa 100644 --- a/awx/api/views/instance_install_bundle.py +++ b/awx/api/views/instance_install_bundle.py @@ -47,7 +47,6 @@ class InstanceInstallBundle(GenericAPIView): def get(self, request, *args, **kwargs): instance_obj = self.get_object() - # if the instance is not a hop or execution node than return 400 if instance_obj.node_type not in ('execution',): return Response( data=dict(msg=_('Install bundle can only be generated for execution nodes.')),