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)