Skip to content

Commit

Permalink
BUG: fix PEP8 & blaze dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lacabra committed Jul 12, 2018
1 parent dc51808 commit 3e145ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions etc/requirements_blaze.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
-e git://github.com/quantopian/datashape.git@bf06a41dc0908baf7c324aeacadba8820468ee78#egg=datashape-dev

# Keep cytoolz version in sync with toolz version in requirements.txt
cytoolz==0.8.2

# Transitive dependencies of blaze:
dask[dataframe]==0.13.0
partd==0.3.7
Expand Down
4 changes: 2 additions & 2 deletions tests/exchange/test_ccxt.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ def test_create_order_timeout_trade(self):
observed_fetchTradeOrder_None = self.exchange.create_order(
asset, amount, is_buy, style)
print(observed_fetchTradeOrder_None)
except ExchangeRequestError as e:
except ExchangeRequestError:
pass

def test_process_order_timeout(self):
Expand Down Expand Up @@ -434,7 +434,7 @@ def test_process_order_timeout(self):
try:
observed_transactions = self.exchange.process_order(order)
print(observed_transactions)
except ExchangeRequestError as e:
except ExchangeRequestError:
pass

# def test_order(self):
Expand Down

0 comments on commit 3e145ee

Please sign in to comment.