diff options
author | Matt Clay <mclay@redhat.com> | 2020-06-23 04:05:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 04:05:30 +0200 |
commit | 4816bb4f43ee22f20fa7d75a79db659cc1cdeaf3 (patch) | |
tree | 4cf981e84fd5cb86174f8067d7178d731dece1c9 /test/integration/targets/infra | |
parent | Fix boilerplate in setup.py and lib/ansible/ dir. (diff) | |
download | ansible-4816bb4f43ee22f20fa7d75a79db659cc1cdeaf3.tar.xz ansible-4816bb4f43ee22f20fa7d75a79db659cc1cdeaf3.zip |
More boilerplate fixes. (#70224)
* Fix boilerplate in hacking dir.
* Fix boilerplate in docs dir.
* Fix boilerplate in integration tests.
* Fix boilerplate in examples.
Diffstat (limited to 'test/integration/targets/infra')
-rw-r--r-- | test/integration/targets/infra/library/test.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/targets/infra/library/test.py b/test/integration/targets/infra/library/test.py index 9386057517..dbc4b61085 100644 --- a/test/integration/targets/infra/library/test.py +++ b/test/integration/targets/infra/library/test.py @@ -1,6 +1,9 @@ #!/usr/bin/python # -*- coding: utf-8 -*- +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + from ansible.module_utils.basic import AnsibleModule |