Fix a typing issue.

This commit is contained in:
Andrey Rakhmatullin 2023-08-01 17:23:09 +04:00
parent 7fdeb5c5c1
commit f803ad63f3
1 changed files with 1 additions and 1 deletions

View File

@ -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)