mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-03-07 10:05:18 +01:00
Fix deprecated imports in plugins/callback/profile_tasks.py
Replace deprecated module_utils import: - ansible.module_utils.six.moves.reduce -> functools.reduce Fixes #686 Co-authored-by: Cursor AI Signed-off-by: Pavel Bar <pbar@redhat.com>
This commit is contained in:
parent
d0f576d3bd
commit
7e4cf566f4
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ import collections
|
|||
|
||||
from datetime import datetime
|
||||
|
||||
from ansible.module_utils.six.moves import reduce
|
||||
from functools import reduce
|
||||
from ansible.plugins.callback import CallbackBase
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue