Resolve pep8 violations caught by pep8 v1.7.0

This patch resolves new pep8 violations caught by pep8 v1.7.0.

Change-Id: I39b092265966a5f41db0ffd6ade248b73c601a55
This commit is contained in:
Jesse Pretorius 2016-01-13 10:43:59 +00:00
parent 729f9c6e0b
commit d0b8f254e6

View File

@ -13,6 +13,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import subprocess
# import module snippets
from ansible.module_utils.basic import *
DOCUMENTATION = """
---
module: mysql_status_facts
@ -28,8 +35,6 @@ EXAMPLES = """
mysql_status_facts:
"""
import subprocess
class MysqlStatusFacts(object):
def __init__(self, module):
@ -61,6 +66,5 @@ def main():
mysql_facts = MysqlStatusFacts(module)
mysql_facts.gather_facts()
from ansible.module_utils.basic import *
if __name__ == '__main__':
main()