Remove unneeded Task.is_static assignment (#82288)

Added in b38f746 but there is/was no Task.is_static so this just creates
a new attribute dynamically that is/was never used.
This commit is contained in:
Martin Krizek
2023-11-28 10:35:31 -05:00
committed by GitHub
parent 322eb0f884
commit fd2d0ecfb7
-2
View File
@@ -93,7 +93,6 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
from ansible.playbook.role_include import IncludeRole
from ansible.playbook.handler_task_include import HandlerTaskInclude
from ansible.template import Templar
from ansible.utils.plugin_docs import get_versioned_doclink
if not isinstance(ds, list):
raise AnsibleAssertionError('The ds (%s) should be a list but was a %s' % (ds, type(ds)))
@@ -257,7 +256,6 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
else:
task_list.extend(included_blocks)
else:
t.is_static = False
task_list.append(t)
elif action in C._ACTION_ALL_PROPER_INCLUDE_IMPORT_ROLES: