infinite loop

This commit is contained in:
2026-05-15 21:14:14 +01:00
parent 1a530bd27d
commit 1bf8e41e0c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View File

@@ -48,7 +48,7 @@ def generate(config):
fill = tuple(fill) if fill else None fill = tuple(fill) if fill else None
draw.text(config.get('text_offset', [0, 0]), text, font=font, fill=fill) draw.text(config.get('text_offset', [0, 0]), text, font=font, fill=fill)
img.save(config['output'], save_all=True) img.save(config['output'], save_all=True, loop=0)
def main(args): def main(args):