Add default values to help

This commit is contained in:
kris 2021-11-24 15:44:37 +00:00
parent 8d3ab4f50e
commit 0036ee9522
1 changed files with 4 additions and 2 deletions

View File

@ -328,11 +328,13 @@ def main():
) )
parser.add_argument( parser.add_argument(
'--fixed-colours', type=int, default=0, '--fixed-colours', type=int, default=0,
help='How many colours to fix as identical across all 16 SHR palettes' help='How many colours to fix as identical across all 16 SHR palettes '
'(default: 0)'
) )
parser.add_argument( parser.add_argument(
'--save-preview', type=bool, default=True, '--save-preview', type=bool, default=True,
help='Whether to save a .PNG rendering of the output image' help='Whether to save a .PNG rendering of the output image (default: '
'True)'
) )
args = parser.parse_args() args = parser.parse_args()
if args.lookahead < 1: if args.lookahead < 1: