Skip to content

Commit

Permalink
removed debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
whittlem committed May 12, 2021
1 parent cd22fad commit 0e35cd3
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion models/CoinbasePro.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ def getOrders(self, market: str='', action: str='', status: str='all') -> pd.Dat
df = df[[ 'created_at', 'market', 'action', 'type', 'size', 'value', 'status', 'price' ]]
df['size'] = df['size'].astype(float).round(8)
else:
print ('TEST')
df.columns = [ 'created_at', 'market', 'action', 'type', 'value', 'size', 'filled', 'fees', 'status', 'price' ]
df = df[[ 'created_at', 'market', 'action', 'type', 'size', 'value', 'fees', 'price', 'status' ]]
df.columns = [ 'created_at', 'market', 'action', 'type', 'size', 'filled', 'fees', 'price', 'status' ]
Expand Down

0 comments on commit 0e35cd3

Please sign in to comment.