Code is easier to read when each import statement is defined on a separate line.

Update the code so that each import is defined on a separate line. PEP8 notes that it is acceptable to define multiple imports from a subprocess in a single statement.

The import statement:

should be changed to:

  • Python Language Reference: The import statement.
  • Python PEP 8: Imports.