Reformat with black

This commit is contained in:
flyingscorpio@arch-desktop 2020-09-05 16:25:04 +02:00
parent a7c956fbab
commit fc388d38bc

View file

@ -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()