mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 03:11:24 -07:00
Add python3-compat boilerplate to all .py files in lib/ansible
This commit is contained in:
parent
de3ca57a33
commit
f34b55ac2b
36 changed files with 123 additions and 8 deletions
|
@ -18,6 +18,10 @@
|
|||
# Provides per-task timing, ongoing playbook elapsed time and
|
||||
# ordered list of top 20 longest running tasks at end
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import time
|
||||
|
||||
from ansible.plugins.callback import CallbackBase
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue