style: 代码格式化和字符串处理优化

- 优化代码缩进和换行,提高可读性
- 统一使用单引号或双引号,保持一致性
- 移除冗余的空格和括号,精简代码
This commit is contained in:
2025-02-15 21:30:24 +08:00
parent 94198f5a51
commit 1570ba320c
34 changed files with 948 additions and 358 deletions

View File

@@ -3,4 +3,9 @@ from .TUI import XHSDownloader
from .application import XHS
from .module import Settings
__all__ = ['XHS', 'XHSDownloader', 'cli', 'Settings', ]
__all__ = [
"XHS",
"XHSDownloader",
"cli",
"Settings",
]