From c4889bc0812797ca83f8a4d42c9d0458b708c859 Mon Sep 17 00:00:00 2001 From: MuslemRahimi Date: Fri, 26 Jul 2024 10:17:14 +0200 Subject: [PATCH] clean code --- app/main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/app/main.py b/app/main.py index 0309c81..a66bb8e 100755 --- a/app/main.py +++ b/app/main.py @@ -1216,7 +1216,6 @@ async def stock_finder(data:StockScreenerData, api_key: str = Security(get_api_k cache_key = f"stock-screener-data-{rule_of_list}" cached_result = redis_client.get(cache_key) if cached_result: - print('cached') return StreamingResponse( io.BytesIO(cached_result), media_type="application/json",