From e9cd816d4dde19928abba2a4e364285bcabb45e8 Mon Sep 17 00:00:00 2001 From: yanweidong Date: Wed, 9 Sep 2026 11:08:56 +0800 Subject: [PATCH] fix args --- py-client/libs/watch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-client/libs/watch.py b/py-client/libs/watch.py index 25fb181..cd7501f 100644 --- a/py-client/libs/watch.py +++ b/py-client/libs/watch.py @@ -16,7 +16,7 @@ class DipWatch: def __init__( self, expire_seconds: float = 600, - rebound_threshold: float = 1.5, # 反弹力度 1.5% + rebound_threshold: float = 0.6, # 反弹力度 1.5% ) -> None: self.expire_seconds = expire_seconds self.rebound_threshold = rebound_threshold