Addon Manager: Fix bug in dependency installer

This commit is contained in:
Chris Hennes
2023-02-21 12:48:45 -06:00
committed by Chris Hennes
parent 0a8037a27d
commit 028101d869
3 changed files with 5 additions and 5 deletions

View File

@@ -116,7 +116,7 @@ class AddonInstaller(QtCore.QObject):
allowed_packages = set()
def __init__(self, addon: object, allow_list: List[str] = None):
def __init__(self, addon: Addon, allow_list: List[str] = None):
"""Initialize the installer with an optional list of addons. If provided, then installation
by name is supported, as long as the objects in the list contain a "name" and "url"
property. In most use cases it is expected that addons is a List of Addon objects, but that