1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

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

This commit is contained in:
Toshio Kuratomi 2016-03-24 20:07:52 -07:00
parent 1c4cfee415
commit 3221be4340

View file

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