We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d274891 commit 0b7fde2Copy full SHA for 0b7fde2
aioscpy/inject.py
@@ -86,6 +86,7 @@ def load_all_spider_inner(dirname):
86
module = module.load_module(package_name)
87
for cls_name in module.__dir__():
88
if cls_name == "__spiders__":
89
+ class_object = getattr(module, cls_name)
90
for co in class_object:
91
_class_objects[co.name] = co
92
if not cls_name.startswith('__'):
0 commit comments