mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07: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
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
__metaclass__ = type
|
|
||||||
from __future__ import (absolute_import, division, print_function)
|
from __future__ import (absolute_import, division, print_function)
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
def issubset(a, b):
|
def issubset(a, b):
|
||||||
return set(a) <= set(b)
|
return set(a) <= set(b)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue