Reverse boilerplate order because from __future__ must be the first code in the file

pull/15159/head
Toshio Kuratomi 9 years ago
parent 1c4cfee415
commit 3221be4340

@ -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)

Loading…
Cancel
Save