Reformat with black
This commit is contained in:
parent
a7c956fbab
commit
fc388d38bc
1 changed files with 18 additions and 5 deletions
23
install.py
23
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()
|
||||
|
|
Loading…
Add table
Reference in a new issue