Remove some print statements
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user