Update data_manager.py
Browse files- data_manager.py +2 -1
data_manager.py
CHANGED
|
@@ -385,8 +385,9 @@ class DataManager:
|
|
| 385 |
return None
|
| 386 |
|
| 387 |
except (asyncio.TimeoutError, Exception) as e:
|
|
|
|
| 388 |
if "rate limit" not in str(e).lower():
|
| 389 |
-
|
| 390 |
return None
|
| 391 |
|
| 392 |
def _quick_validation(self, current_price, dollar_volume, high_24h, low_24h):
|
|
|
|
| 385 |
return None
|
| 386 |
|
| 387 |
except (asyncio.TimeoutError, Exception) as e:
|
| 388 |
+
# إصلاح الخطأ: استبدال continue بـ return None
|
| 389 |
if "rate limit" not in str(e).lower():
|
| 390 |
+
return None
|
| 391 |
return None
|
| 392 |
|
| 393 |
def _quick_validation(self, current_price, dollar_volume, high_24h, low_24h):
|