Skip to content

Commit

Permalink
Change FileOpener default compression level to 1
Browse files Browse the repository at this point in the history
Only relevant internally. CLI still uses whatever is set there.
  • Loading branch information
marcelm committed Feb 2, 2024
1 parent c740637 commit c703e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cutadapt/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def raise_open_files_limit(n):


class FileOpener:
def __init__(self, compression_level: int = 6, threads: Optional[int] = None):
def __init__(self, compression_level: int = 1, threads: Optional[int] = None):
"""
threads -- no. of external compression threads.
0: write in-process
Expand Down

0 comments on commit c703e09

Please # to comment.