refactor: remove redundant print statements in cursor_auth_manager.py and cursor_pro_keep_alive.py

This commit is contained in:
cheng zhen
2024-12-29 10:09:05 +08:00
parent 2c02a38699
commit b72085e5dd
2 changed files with 0 additions and 2 deletions

View File

@@ -47,7 +47,6 @@ class CursorAuthManager:
if cursor.rowcount > 0:
print(f"成功更新 {key.split('/')[-1]}")
print("更新成功")
else:
print(f"未找到 {key.split('/')[-1]} 或值未变化")

View File

@@ -214,7 +214,6 @@ def get_cursor_session_token(tab):
cookies = tab.cookies()
cursor_session_token = None
time.sleep(3)
print(cookies)
for cookie in cookies:
if cookie["name"] == "WorkosCursorSessionToken":
cursor_session_token = cookie["value"].split("%3A%3A")[1]