Commit c587bf14 by Brian Coca

fixed absolute_import to be on top as it requries

parent c2023f6f
...@@ -15,6 +15,8 @@ ...@@ -15,6 +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/>.
from __future__ import absolute_import
import sys import sys
import base64 import base64
import json import json
...@@ -34,7 +36,6 @@ import uuid ...@@ -34,7 +36,6 @@ import uuid
import yaml import yaml
from jinja2.filters import environmentfilter from jinja2.filters import environmentfilter
from distutils.version import LooseVersion, StrictVersion from distutils.version import LooseVersion, StrictVersion
from __future__ import absolute_import
from ansible import errors from ansible import errors
from ansible.utils.hashing import md5s, checksum_s from ansible.utils.hashing import md5s, checksum_s
......
...@@ -15,10 +15,11 @@ ...@@ -15,10 +15,11 @@
# 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/>.
from __future__ import absolute_import
import math import math
import collections import collections
from ansible import errors from ansible import errors
from __future__ import absolute_import
def unique(a): def unique(a):
if isinstance(a,collections.Hashable): if isinstance(a,collections.Hashable):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment