Salome HOME
style: black format
[tools/sat.git] / commands / shell.py
index c2139755c3b373d66b2a1ab64b1a4be4cc03dee2..8edd596036257817e3010151c3eca85b9caf4d9d 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-#-*- coding:utf-8 -*-
+# -*- coding:utf-8 -*-
 #  Copyright (C) 2010-2012  CEA/DEN
 #
 #  This library is free software; you can redistribute it and/or
@@ -22,51 +22,59 @@ import src
 
 # Define all possible option for the shell command :  sat shell <options>
 parser = src.options.Options()
-parser.add_option('c', 'command', 'string', 'command',
-    _('Mandatory: The shell command to execute.'), "")
+parser.add_option(
+    "c",
+    "command",
+    "string",
+    "command",
+    _("Mandatory: The shell command to execute."),
+    "",
+)
+
 
 def description():
-    '''method that is called when salomeTools is called with --help option.
-    
+    """method that is called when salomeTools is called with --help option.
+
     :return: The text to display for the shell command description.
     :rtype: str
-    '''
-    return _("""\
+    """
+    return _(
+        """\
 The shell command executes the shell commands passed as argument.
 
 example:
->> sat shell --command "ls -l /tmp" """)
-  
+>> sat shell --command "ls -l /tmp" """
+    )
+
+
 def run(args, runner, logger):
-    '''method that is called when salomeTools is called with shell parameter.
-    '''
-    
+    """method that is called when salomeTools is called with shell parameter."""
+
     # Parse the options
     (options, args) = parser.parse_args(args)
 
     # Make sure the command option has been called
     if not options.command:
-        message = _("The option --command is required\n")      
+        message = _("The option --command is required\n")
         logger.write(src.printcolors.printcError(message))
         return 1
-    
+
     # Print the input command
     msg = _("Command to execute:\n%s\nExecution ... " % options.command)
     logger.write(msg, 3)
-    
+
     # Call the input command
-    res = subprocess.call(options.command,
-                          shell=True,
-                          stdout=logger.logTxtFile,
-                          stderr=subprocess.STDOUT)
+    res = subprocess.call(
+        options.command, shell=True, stdout=logger.logTxtFile, stderr=subprocess.STDOUT
+    )
+
     # Format the result to be 0 (success) or 1 (fail)
     if res != 0:
         res = 1
         logger.write(src.printcolors.printc("KO"), 3)
     else:
         logger.write(src.printcolors.printc("OK"), 3)
-    
-    logger.write("\n",3)
-    
-    return res
\ No newline at end of file
+
+    logger.write("\n", 3)
+
+    return res