From 22f28d55b486756b1ed72ddab1c49f62373fe1f8 Mon Sep 17 00:00:00 2001 From: g1879 Date: Mon, 23 Nov 2020 23:06:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DrissionPage/easy_set.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/DrissionPage/easy_set.py b/DrissionPage/easy_set.py index eee2ffe..593789e 100644 --- a/DrissionPage/easy_set.py +++ b/DrissionPage/easy_set.py @@ -53,10 +53,7 @@ def set_paths(driver_path: str = None, om = OptionsManager(ini_path) def format_path(path: str) -> str: - if not path: - return '' - - return str(path).replace('/', '\\') + return '' if not path else str(path).replace('/', '\\') if driver_path is not None: om.set_item('paths', 'chromedriver_path', format_path(driver_path))