diff --git a/install.py b/install.py index f1a8d00..7c44d5e 100755 --- a/install.py +++ b/install.py @@ -120,13 +120,9 @@ class Installer: ui.fatal("Operating System not understood.") return - install = subprocess.run( - command, - check=False, - shell=True, - stdout=subprocess.DEVNULL, - stderr=subprocess.DEVNULL, - ) + install = subprocess.run(command, check=False, shell=True, + stdout=subprocess.DEVNULL, + stderr=subprocess.DEVNULL) if install.returncode != 0: ui.info(ui.cross) @@ -140,11 +136,8 @@ class Installer: for failed in failed_installs: ui.info(" ", failed) - ui.info( - ui.yellow, - "Are the packages really meant for {} systems?" - .format(self.operating_system) - ) + ui.info(ui.yellow, "Are the packages really meant for {} systems?" + .format(self.operating_system)) def do_run(self, command: str, condition: str = "true") -> None: """Run a command."""