From 1845ab1b72e31f98517ea952ab8427c358e7a438 Mon Sep 17 00:00:00 2001 From: Thomas Marchand Date: Tue, 28 Jul 2020 14:33:16 +0200 Subject: [PATCH] remove debugs --- binance/client.py | 2 -- 1 file changed, 2 deletions(-) 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):