diff --git a/sync/order_sync.py b/sync/order_sync.py index 2ca278c..d5c9e2c 100644 --- a/sync/order_sync.py +++ b/sync/order_sync.py @@ -15,7 +15,6 @@ class OrderSyncBatch(BaseSync): async def sync_batch(self, accounts: Dict[str, Dict]): """批量同步所有账号的订单数据""" - return try: logger.info(f"开始批量同步订单数据,共 {len(accounts)} 个账号") diff --git a/sync/position_sync.py b/sync/position_sync.py index 34d3666..10eb487 100644 --- a/sync/position_sync.py +++ b/sync/position_sync.py @@ -15,7 +15,6 @@ class PositionSyncBatch(BaseSync): async def sync_batch(self, accounts: Dict[str, Dict]): """批量同步所有账号的持仓数据""" - return try: logger.info(f"开始批量同步持仓数据,共 {len(accounts)} 个账号")