mirror of https://github.com/scrapy/scrapy.git
Fix a typing issue.
This commit is contained in:
parent
7fdeb5c5c1
commit
f803ad63f3
|
|
@ -29,7 +29,7 @@ class AddonManager:
|
|||
which to read the add-on configuration
|
||||
:type settings: :class:`~scrapy.settings.Settings`
|
||||
"""
|
||||
enabled = []
|
||||
enabled: List[Any] = []
|
||||
for clspath in build_component_list(settings["ADDONS"]):
|
||||
try:
|
||||
addoncls = load_object(clspath)
|
||||
|
|
|
|||
Loading…
Reference in New Issue