We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ac594d commit e051ba4Copy full SHA for e051ba4
3 files changed
Changelog
@@ -8,6 +8,10 @@ pre-0.3.0[2025.11.12]
8
新增 下载前确认提示
9
新增 关于文本中的InquirerPy模块信息及链接
10
11
+修复 因core.py中line 31多余global引起打包失败的问题
12
+修复 InquirerPy模块导入方式导致无法运行的问题
13
+新增 src\libs下的__init__.py
14
+
15
pre-0.2.2[2025.11.08]
16
·修复 jm 模块动态导入失败的问题(jm is not defined)
17
优化 使用类整理link和text
src/libs/__init__.py
src/libs/core.py
@@ -8,6 +8,7 @@
from libs import jmcomic as jm
from libs import yaml
from libs import InquirerPy
+from libs.InquirerPy import inquirer
from libs.text import text
@@ -28,7 +29,6 @@ def initialize () -> bool:
28
29
30
31
def jmcomic_download() -> None:
- global
32
jm_ids = InquirerPy.inquirer.text( # type: ignore
33
message="请输入要下载的JMcomic车号(多个车号用空格分隔):",
34
).execute()
0 commit comments