From b2072a2b24655af5b62ed65a9c6fe3678d0af9a2 Mon Sep 17 00:00:00 2001 From: William Welter Date: Thu, 4 Jan 2024 14:52:32 +0000 Subject: [PATCH] Fixing lint issues --- plugins/modules/mysql_info.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/modules/mysql_info.py b/plugins/modules/mysql_info.py index 1038f33..15ed0d5 100644 --- a/plugins/modules/mysql_info.py +++ b/plugins/modules/mysql_info.py @@ -511,9 +511,9 @@ class MySQL_Info(object): def __get_slave_status(self): """Get slave status if the instance is a slave.""" - if(self.is_mariadb()): + if self.is_mariadb(): res = self.__exec_sql('SHOW ALL SLAVES STATUS') - else: + else: res = self.__exec_sql('SHOW SLAVE STATUS') if res: for line in res: @@ -757,9 +757,9 @@ def main(): cursor.execute("SELECT VERSION()") if 'mariadb' in cursor.fetchone()[0].lower(): - server_implementation="mariadb" + server_implementation = "mariadb" else: - server_implementation="mysql" + server_implementation = "mysql" ############################### # Create object and do main job