From 6855a9b5e1077e0e7a782d9fb2711e2485a9a043 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 14 May 2021 17:39:45 -0700 Subject: [PATCH] Make --output required. --- stitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stitch.py b/stitch.py index ed990bc..304e912 100644 --- a/stitch.py +++ b/stitch.py @@ -49,7 +49,7 @@ def main(argv): parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('image_files', nargs='+') - parser.add_argument('--output') + parser.add_argument('--output', required=True) parser.add_argument('--horizontal', action='store_true') parser.add_argument('--vertical', action='store_true') parser.add_argument('--gap', type=int, default=0)