Skip to content

Commit eee8509

Browse files
committed
Removed a print
1 parent 25bf07f commit eee8509

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
setup(name='get_crypto_price',
5-
version='0.2.1',
5+
version='0.2.2',
66
description="""A library to getting crypto price.""",
77
long_description="""
88
# Get Crypto Price

src/get_crypto_price/get_crypto_price.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ def get_crypto_price(source = "bitstamp", crypto = "btc", pair = "usdt"):
2626

2727
try:
2828
r = requests.get(URL)
29-
print(r.text)
3029
if source == "bitstamp":
3130
priceFloat = float(json.loads(r.text)["last"])
3231
elif source == "binance":

0 commit comments

Comments
 (0)