Remove some print statements

Mark Veidemanis 2 years ago
parent 6902665ffb
commit 31a77e88ad
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -55,7 +55,6 @@ def post_trade(trade):
log.error(f"Error placing limit order: {e}")
return (False, e)
print("ORDER", order)
else:
raise Exception("Unknown trade type")
trade.response = order

@ -48,7 +48,6 @@ class ObjectList(ListView):
list_url_args = {}
for arg in self.list_url_args:
list_url_args[arg] = locals()[arg]
print("LIST URL ARGS", list_url_args)
if type == "page":
type = "modal"
@ -128,7 +127,6 @@ class ObjectCreate(CreateView):
list_url_args = {}
for arg in self.list_url_args:
list_url_args[arg] = locals()[arg]
print("LIST URL ARGS", list_url_args)
if type == "page":
type = "modal"

@ -18,7 +18,6 @@ def get_positions(user, account_id=None):
accounts = Account.objects.filter(user=user)
for account in accounts:
positions = account.client.get_all_positions()
print("POSITIONS", positions)
for item in positions:
item = dict(item)
@ -79,7 +78,6 @@ class PositionAction(LoginRequiredMixin, View):
account = Account.get_by_id(account_id, request.user)
success, info = trades.get_position_info(account, asset_id)
print("INFO", info)
if not success:
message = "Position does not exist"
message_class = "danger"

Loading…
Cancel
Save