Skip to content

Commit

Permalink
Fix typing problem
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelm committed Mar 25, 2024
1 parent 525a39d commit 1f6925c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cutadapt/files.py
Expand Up @@ -257,7 +257,7 @@ def open_record_writer(
if len(paths) == 1 and paths[0] == "-" and force_fasta:
kwargs["fileformat"] = "fasta"
if paths == (None,):
paths = ["-"]
paths = ("-",)
for path in paths:
assert path is not None
binary_files = []
Expand Down

0 comments on commit 1f6925c

Please sign in to comment.