Skip to content
This repository has been archived by the owner on Jan 22, 2024. It is now read-only.

Commit

Permalink
Update auxiliary.py
Browse files Browse the repository at this point in the history
  • Loading branch information
XiaoXinYo committed May 29, 2023
1 parent d735d25 commit 044d15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/auxiliary.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def isEnglish(keyword: str) -> bool:

def getCookie(filePath: str, names: list=[]) -> dict:
cookie_ = {}
with open(filePath, encoding='utf-8') as file:
with open(filePath) as file:
cookies = json.load(file)
for cookie in cookies:
name = cookie['name']
Expand Down

0 comments on commit 044d15b

Please sign in to comment.