-) updated CHANGELOG

-) updated example get_authenticated_data.py
-) updated string formatter margin_info.py and margin_info_base.py
This commit is contained in:
itsdeka
2021-06-25 12:20:37 +02:00
parent a28b263238
commit 6df56657d3
4 changed files with 12 additions and 8 deletions

View File

@@ -44,4 +44,5 @@ class MarginInfoBase:
return MarginInfoBase(user_pl, user_swaps, margin_balance, margin_net, margin_min)
def __str__(self):
return "Margin Info Base"
return "Margin Info Base user_pl={} user_swaps={} margin_balance={} margin_net={} margin_min={}" \
"".format(self.user_pl, self.user_swaps, self.margin_balance, self.margin_net, self.margin_min)