Skip to content

Commit f319d28

Browse files
authored
Update args_parser.py
Changes to reduce line length
1 parent 515974c commit f319d28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/zxbc/args_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def parser() -> argparse.ArgumentParser:
104104
action="store_true",
105105
dest="basic",
106106
default=None,
107-
help="Creates a BASIC loader which loads the rest of the CODE. Requires one of sna, tzx, tap or z80 output format",
107+
help="Creates a BASIC loader which loads the rest of the CODE. Requires one of sna, tzx, tap or z80 output",
108108
)
109109
parser_.add_argument(
110110
"-a", "--autorun", action="store_true", default=None, help="Sets the program to be run once loaded"
@@ -173,7 +173,7 @@ def parser() -> argparse.ArgumentParser:
173173
)
174174
parser_.add_argument("--version", action="version", version=f"%(prog)s {VERSION}")
175175
parser_.add_argument(
176-
"--append-binary", default=[], action="append", help="Appends binary to tape file (only works with output formats tzx and tap)"
176+
"--append-binary", default=[], action="append", help="Appends binary to tape file (only works with output tzx and tap)"
177177
)
178178
parser_.add_argument(
179179
"--append-headless-binary",

0 commit comments

Comments
 (0)