From 26cfc4a5c31b5bbc1982a6a18828a2a16270870e Mon Sep 17 00:00:00 2001 From: pdimens Date: Thu, 25 Jul 2024 14:04:19 -0400 Subject: [PATCH] rm newline --- src/harpy/validations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/harpy/validations.py b/src/harpy/validations.py index abd1a90aa..988465e22 100644 --- a/src/harpy/validations.py +++ b/src/harpy/validations.py @@ -398,7 +398,7 @@ def check_fasta(genofile): if genofile.lower().endswith(i) or genofile.lower().endswith(i + ".gz"): ext_correct += 1 if ext_correct == 0: - print_notice(f"[blue]{genofile}[/blue] has an unfamiliar FASTA file extension. Common FASTA file extensions are:\n[green]" + ", ".join(ext_options) + "[/green] and may also be gzipped.") + print_notice(f"[blue]{genofile}[/blue] has an unfamiliar FASTA file extension. Common FASTA file extensions are: [green]" + ", ".join(ext_options) + "[/green] and may also be gzipped.") # validate fasta file contents if is_gzip(genofile):