From 531eebffa81cdc5e8fb329ae663361cd06ec3451 Mon Sep 17 00:00:00 2001 From: Andrew Klychkov Date: Fri, 6 Dec 2019 15:19:45 +0300 Subject: [PATCH] mysql: remove unused import (#65606) --- lib/ansible/module_utils/mysql.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/module_utils/mysql.py b/lib/ansible/module_utils/mysql.py index 2de6dac7395..f153542749f 100644 --- a/lib/ansible/module_utils/mysql.py +++ b/lib/ansible/module_utils/mysql.py @@ -40,8 +40,6 @@ except ImportError: except ImportError: mysql_driver = None -from ansible.module_utils._text import to_native - mysql_driver_fail_msg = 'The PyMySQL (Python 2.7 and Python 3.X) or MySQL-python (Python 2.X) module is required.'