Remove accidental argument. Change helptext wording

This commit is contained in:
RealStickman 2022-11-10 14:45:49 +01:00
parent 5a9f765281
commit 2bb1b1d778

View File

@ -417,21 +417,12 @@ if __name__ == "__main__":
help="Input file to encode", help="Input file to encode",
) )
# in case you wanted to rerun the conversion for everything
parser.add_argument(
"-r",
"--reset",
required=False,
action="store_true",
help="Rerun conversion for all files",
)
parser.add_argument( parser.add_argument(
"-k", "-k",
"--keep-encodes", "--keep-encodes",
action="store_true", action="store_true",
required=False, required=False,
help="Don't delete encodes after getting their scores. Default is delete (False)", help="Don't delete encodes after getting their scores. Default is False (delete)",
) )
args = parser.parse_args() args = parser.parse_args()