From 3221be4340e0e9bddb3054f5c317fb77ffb48046 Mon Sep 17 00:00:00 2001 From: Toshio Kuratomi Date: Thu, 24 Mar 2016 20:07:52 -0700 Subject: [PATCH] Reverse boilerplate order because from __future__ must be the first code in the file --- lib/ansible/plugins/test/mathstuff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 . -__metaclass__ = type from __future__ import (absolute_import, division, print_function) +__metaclass__ = type def issubset(a, b): return set(a) <= set(b)