We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4820186 commit 55b1d9eCopy full SHA for 55b1d9e
1 file changed
test/simple_test.py
@@ -31,6 +31,7 @@
31
32
try:
33
from PIL import Image
34
+ _ = Image # 标记为有意未使用
35
print(" ✅ PIL")
36
except ImportError as e:
37
print(f" ❌ PIL: {e}")
@@ -40,18 +41,21 @@
40
41
42
43
from svision.options import Options
44
+ _ = Options # noqa: F401
45
print(" ✅ svision.options")
46
47
print(f" ❌ svision.options: {e}")
48
49
50
from svision.aircv import aircv as aircv_module
51
+ _ = aircv_module # noqa: F401
52
print(" ✅ svision.aircv")
53
54
print(f" ❌ svision.aircv: {e}")
55
56
57
from svision.orc import TextRecognizer
58
+ _ = TextRecognizer # noqa: F401
59
print(" ✅ svision.orc")
60
61
print(f" ❌ svision.orc: {e}")
0 commit comments