Skip to content

Commit

Permalink
Merge pull request #38 from Jamonek/fix/remove-if-else-block
Browse files Browse the repository at this point in the history
Remove unnecessary if-else block
  • Loading branch information
Jamonek authored Jul 20, 2017
2 parents ed2b44a + 9a32790 commit e2106a1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Robinhood/Robinhood.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@
from six.moves.urllib.parse import unquote
from six.moves.urllib.request import getproxies
from six.moves import input

if six.PY3: #pragma: no cover
from . import exceptions as RH_exception
else: #pragma: no cover
from . import exceptions as RH_exception
from . import exceptions as RH_exception

class Bounds(Enum):
"""enum for bounds in `historicals` endpoint"""
Expand Down

0 comments on commit e2106a1

Please sign in to comment.