summaryrefslogtreecommitdiffstats
path: root/roles/lib_utils/src/lib/import.py
blob: d892353a1be9c32899196171458fd2f6d3c08640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# flake8: noqa
# pylint: skip-file

# pylint: disable=wrong-import-order,wrong-import-position,unused-import

from __future__ import print_function  # noqa: F401
import json  # noqa: F401
import os  # noqa: F401
import re  # noqa: F401
# pylint: disable=import-error
import ruamel.yaml as yaml  # noqa: F401
import shutil  # noqa: F401

from ansible.module_utils.basic import AnsibleModule