Skip to content

Commit

Permalink
remove unnecessary f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianegli committed Aug 31, 2022
1 parent 7faef57 commit 9c88222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nf_core/pipeline-template/bin/check_samplesheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def sniff_format(handle):
handle.seek(0)
sniffer = csv.Sniffer()
if not sniffer.has_header(peek):
logger.critical(f"The given sample sheet does not appear to contain a header.")
logger.critical("The given sample sheet does not appear to contain a header.")
sys.exit(1)
dialect = sniffer.sniff(peek)
return dialect
Expand Down

0 comments on commit 9c88222

Please sign in to comment.