Skip to content

Commit

Permalink
fixed pep 8 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 19, 2014
1 parent 0fa0d3d commit 5a3a32b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/netius/base/legacy.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def xrange(start, stop = None, step = 1):

def range(start, stop = None, step = None):
if PYTHON_3: return eager(_range(start, stop, step)) if stop else eager(_range(start))
return _range(start, stop, step) if stop else _range(start)
return _range(start, stop, step) if stop else _range(start)

def ord(value):
if PYTHON_3 and type(value) == int: return value
Expand Down

0 comments on commit 5a3a32b

Please sign in to comment.