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:
parent
1c4cfee415
commit
3221be4340
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue