Skip to content

Commit a8a98ac

Browse files
committed
flake8
1 parent c049f68 commit a8a98ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

qiita_client/qiita_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -616,8 +616,8 @@ def _process_files_per_sample_fastq(self, files, prep_info,
616616
revs = sorted(
617617
files['raw_reverse_seqs'], key=lambda x: x['filepath'])
618618
if len(fwds) != len(revs):
619-
raise ValueError('The fwd (' + str(len(fwds)) ') and rev (' +
620-
str(len(revs)) + ') files should be of the '
619+
raise ValueError('The fwd (' + str(len(fwds)) + ') and rev ('
620+
+ str(len(revs)) + ') files should be of the '
621621
'same length')
622622

623623
run_prefixes = prep_info['run_prefix'].to_dict()
@@ -645,7 +645,7 @@ def _process_files_per_sample_fastq(self, files, prep_info,
645645
'No run prefix matching this fwd read: %s' % fwd_fn)
646646
if run_prefix in used_prefixes:
647647
raise ValueError(
648-
f'Run prefix matches multiple fwd reads: %s' % run_prefix)
648+
'Run prefix matches multiple fwd reads: %s' % run_prefix)
649649
used_prefixes.append(run_prefix)
650650

651651
if rev is not None:

0 commit comments

Comments
 (0)