Skip to content
This repository has been archived by the owner on Aug 29, 2022. It is now read-only.

Commit

Permalink
pep8 E251. No spaces around keyword equals.
Browse files Browse the repository at this point in the history
  • Loading branch information
ulif committed Sep 27, 2013
1 parent f92b404 commit 3e80a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/z3c/coverage/tests.py
Expand Up @@ -319,11 +319,11 @@ def test_suite():
return unittest.TestSuite([
doctest.DocFileSuite(
'README.txt', setUp=setUp, checker=checker,
optionflags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
optionflags=doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
),
doctest.DocFileSuite(
'coveragediff.txt', setUp=setUp, checker=checker,
optionflags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
optionflags=doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS,
),
doctest.DocTestSuite(checker=checker),
doctest.DocTestSuite(
Expand Down

0 comments on commit 3e80a51

Please sign in to comment.