Skip to content

Commit

Permalink
PEP8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislit committed May 13, 2015
1 parent ff48733 commit b339dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions usfm2osis/_compat.py
Expand Up @@ -21,11 +21,11 @@
import sys

# pylint: disable=invalid-name
if sys.version_info[0] == 3: # pragma: no cover
if sys.version_info[0] == 3: # pragma: no cover
_range = range
_unicode = str
_unichr = chr
else: # pragma: no cover
else: # pragma: no cover
_range = xrange
_unicode = unicode
_unichr = unichr

0 comments on commit b339dfb

Please sign in to comment.