From 982e70a4e47a977f780b7b7b780667b193a53211 Mon Sep 17 00:00:00 2001 From: kinoshitakenta Date: Thu, 3 Jul 2025 13:22:24 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20use=20straight=20quotes=20(')=20instead?= =?UTF-8?q?=20of=20typographic=20apostrophes=20(=E2=80=99)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Typographic apostrophes can lead to formatting or encoding issues in technical documents. Straight quotes are preferred in source-controlled files to ensure consistency and portability. --- utils/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/utils.py b/utils/utils.py index 6f7f257..dc92d65 100644 --- a/utils/utils.py +++ b/utils/utils.py @@ -49,7 +49,7 @@ def keep_login_status(driver: webdriver.Chrome, login_info: LoginInfo) -> bool: """ Attempt to log into the CHI MotorWeb ERP system using the provided login information. - This function navigates to the login page, fills in the login form with the user’s credentials, + This function navigates to the login page, fills in the login form with the user's credentials, and attempts to log in. It handles unexpected alert pop-ups that indicate login failure, and manages browser windows to ensure only the relevant page remains open.