From: Diane Trout Date: Fri, 20 Mar 2015 21:24:41 +0000 (-0700) Subject: add more from __future__ import print_function, unicode_literals X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=6bbfa36a84093a12e462526c45ed63191fa014fc add more from __future__ import print_function, unicode_literals --- diff --git a/htsworkflow/pipelines/qseq2fastq.py b/htsworkflow/pipelines/qseq2fastq.py index 15f1536..c2fbcaf 100644 --- a/htsworkflow/pipelines/qseq2fastq.py +++ b/htsworkflow/pipelines/qseq2fastq.py @@ -1,6 +1,7 @@ #!/usr/bin/env python """Convert a collection of qseq or a tar file of qseq files to a fastq file """ +from __future__ import print_function, unicode_literals from glob import glob import os from optparse import OptionParser diff --git a/htsworkflow/util/test/test_ethelp.py b/htsworkflow/util/test/test_ethelp.py index 5d982e8..8d336fb 100644 --- a/htsworkflow/util/test/test_ethelp.py +++ b/htsworkflow/util/test/test_ethelp.py @@ -1,3 +1,5 @@ +from __future__ import print_function, unicode_literals + import os from unittest import TestCase