From fc388d38bc731ab82e575c198983d2ff50e7499d Mon Sep 17 00:00:00 2001 From: "flyingscorpio@arch-desktop" Date: Sat, 5 Sep 2020 16:25:04 +0200 Subject: [PATCH] Reformat with black --- install.py | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/install.py b/install.py index 6003398..de69cc5 100755 --- a/install.py +++ b/install.py @@ -240,7 +240,9 @@ class Installer: for failed in failed_installs: ui.info(" ", failed) - ui.warning(f"Are the packages really meant for {self.operating_system} systems?") + ui.warning( + f"Are the packages really meant for {self.operating_system} systems?" + ) def do_run(self, command: str, condition: str = "true") -> None: """Run a command.""" @@ -403,7 +405,9 @@ def main() -> None: parser = argparse.ArgumentParser() parser.add_argument( - "programs", nargs="*", help="Programs to process, can be none", + "programs", + nargs="*", + help="Programs to process, can be none", ) parser.add_argument( "-f", @@ -412,7 +416,10 @@ def main() -> None: help="Use 'process_list.txt' as programs to process", ) parser.add_argument( - "-F", "--force", action="store_true", help="Overwrite existing files", + "-F", + "--force", + action="store_true", + help="Overwrite existing files", ) parser.add_argument( "-i", @@ -433,10 +440,16 @@ def main() -> None: help="List all programs from the configuration file", ) parser.add_argument( - "-u", "--update", action="store_true", help="Update programs", + "-u", + "--update", + action="store_true", + help="Update programs", ) parser.add_argument( - "-H", "--hide_commands", action="store_true", help="Hide command outputs", + "-H", + "--hide_commands", + action="store_true", + help="Hide command outputs", ) args = parser.parse_args()