Applied Black, refs #36

This commit is contained in:
Simon Willison
2025-02-13 19:12:57 -08:00
parent 645cf7ae2f
commit fb62524edc

View File

@@ -210,7 +210,7 @@ def cli(
writer = click.echo
fp = None
if output_file:
fp = open(output_file, "w", encoding='utf-8')
fp = open(output_file, "w", encoding="utf-8")
writer = lambda s: print(s, file=fp)
for path in paths:
if not os.path.exists(path):