summaryrefslogtreecommitdiff
path: root/lib/ansible/plugins/test
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2016-03-24 20:07:52 -0700
committerToshio Kuratomi <toshio@fedoraproject.org>2016-03-24 20:08:39 -0700
commit3221be4340e0e9bddb3054f5c317fb77ffb48046 (patch)
tree4b7a7980d7b22e9064962830714e3cfe23be4bfb /lib/ansible/plugins/test
parent1c4cfee415b115a1e281c8ec078635599049c2eb (diff)
downloadansible-3221be4340e0e9bddb3054f5c317fb77ffb48046.tar.gz
Reverse boilerplate order because from __future__ must be the first code in the file
Diffstat (limited to 'lib/ansible/plugins/test')
-rw-r--r--lib/ansible/plugins/test/mathstuff.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ansible/plugins/test/mathstuff.py b/lib/ansible/plugins/test/mathstuff.py
index d641e5df86..54b33b70b6 100644
--- a/lib/ansible/plugins/test/mathstuff.py
+++ b/lib/ansible/plugins/test/mathstuff.py
@@ -15,8 +15,8 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
-__metaclass__ = type
from __future__ import (absolute_import, division, print_function)
+__metaclass__ = type
def issubset(a, b):
return set(a) <= set(b)