Fix striping empty escape sequences from strings

- Fix log message on jsonl write
This commit is contained in:
Debanjum Singh Solanky
2022-09-10 23:55:09 +03:00
parent a7cf6c8458
commit 2e1bbe0cac
4 changed files with 5 additions and 4 deletions

View File

@@ -54,4 +54,4 @@ def compress_jsonl_data(jsonl_data, output_path):
with gzip.open(output_path, 'wt') as gzip_file:
gzip_file.write(jsonl_data)
logger.info(f'Wrote {len(jsonl_data)} lines to gzip compressed jsonl at {output_path}')
logger.info(f'Wrote jsonl data to gzip compressed jsonl at {output_path}')