Skip to content

Commit a9877b4

Browse files
committed
Change code to avoid future warning
1 parent b4b776e commit a9877b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

q2_picrust2/_full_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def full_pipeline(table: biom.Table,
3535
seq_outfile = path.join(temp_dir, "seqs.fna")
3636

3737
with open(seq_outfile, "w") as outfile_fh:
38-
for seqname, sequence in seq.iteritems():
38+
for seqname, sequence in seq.items():
3939
print(">" + str(seqname) + "\n" + str(sequence),
4040
file=outfile_fh)
4141

0 commit comments

Comments
 (0)