Skip to content

Commit

Permalink
Appease pep8
Browse files Browse the repository at this point in the history
  • Loading branch information
standage committed Oct 13, 2016
1 parent 9f8834b commit 5d5a609
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions screed/tests/test_shell.py
Expand Up @@ -22,8 +22,8 @@ def setup(self):
self._testfa = utils.get_temp_filename('test.fa')
shutil.copy(utils.get_test_data('test.fa'), self._testfa)

ret = subprocess.check_call(['python', '-m', 'screed.fadbm', self._testfa],
stdout=subprocess.PIPE)
cmd = ['python', '-m', 'screed.fadbm', self._testfa]
ret = subprocess.check_call(cmd, stdout=subprocess.PIPE)
assert ret == 0, ret
self.db = screed.ScreedDB(self._testfa)

Expand All @@ -44,8 +44,8 @@ def setup(self):
self._testfq = utils.get_temp_filename('test.fastq')
shutil.copy(utils.get_test_data('test.fastq'), self._testfq)

ret = subprocess.check_call(['python', '-m', 'screed.fqdbm', self._testfq],
stdout=subprocess.PIPE)
cmd = ['python', '-m', 'screed.fqdbm', self._testfq]
ret = subprocess.check_call(cmd, stdout=subprocess.PIPE)
assert ret == 0, ret
self.db = screed.ScreedDB(self._testfq)

Expand Down

0 comments on commit 5d5a609

Please sign in to comment.