diff --git a/binance/client.py b/binance/client.py index 823f5b4..f91052c 100644 --- a/binance/client.py +++ b/binance/client.py @@ -99,7 +99,6 @@ def refine_amount(self, symbol, amount: Union[str, Decimal]): .rstrip("0") .rstrip(".") ) - print(amount) return amount def refine_price(self, symbol, price: Union[str, Decimal]): @@ -113,7 +112,6 @@ def refine_price(self, symbol, price: Union[str, Decimal]): .rstrip("0") .rstrip(".") ) - print(price) return price def assert_symbol(self, symbol):