style: Format code with consistent quotes and spacing

This commit is contained in:
Paul Gauthier (aider) 2025-03-13 16:08:57 -07:00
parent 520eb4a932
commit 2d8bc95bae

View file

@ -16,7 +16,7 @@ def main():
output_file = sys.argv[2]
# Count total lines for progress bar
total_lines = sum(1 for _ in open(input_file, 'r'))
total_lines = sum(1 for _ in open(input_file, "r"))
with open(input_file, "r") as fin, open(output_file, "w") as fout:
# Process header
@ -34,7 +34,7 @@ def main():
stream = pyte.Stream(screen)
# Process events line by line
for line in tqdm(fin, desc="Processing events", total=total_lines-1):
for line in tqdm(fin, desc="Processing events", total=total_lines - 1):
if not line.strip():
continue