1
0
Fork 0
mirror of https://github.com/ldericher/fftcgtool synced 2025-01-15 15:02:59 +00:00
This commit is contained in:
Jörn-Michael Miehe 2021-08-05 00:54:15 +02:00
parent 65a0ebd37f
commit 6f1b5fd422

View file

@ -19,7 +19,7 @@ def main():
parser.add_argument(
'opus_id',
default="1",
metavar="OpusID",
metavar="Opus_ID",
nargs="?",
help='the Opus to import')
@ -42,7 +42,7 @@ def main():
# main program
opus = Opus(args.opus_id)
book = Book(opus, GRID, RESOLUTION, "eg", 16)
book = Book(opus, GRID, RESOLUTION, "eg", args.num_threads)
book.save(f"{opus.name}_{{}}.jpg")
# bye