Skip to content

Commit

Permalink
...small comment clarification [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
luzpaz authored and yorikvanhavre committed Oct 28, 2019
1 parent 3d53232 commit e243c6e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Mod/AddonManager/addonmanager_workers.py
Expand Up @@ -319,8 +319,15 @@ class ShowWorker(QtCore.QThread):

def __init__(self, repos, idx):

# repos is a list of [name,url,installbit,descr] lists
# installbit: 0 = not installed, 1 = installed, 2 = installed and checked for available updates
# repos is a list of [name,url,installbit,descr]
# name : Addon name
# url : Addon repository location
# installbit: 0 = Addon is not installed
# 1 = Addon is installed
# 2 = Addon is installed and checked for available updates (none pending)
# 3 = Addon is installed and has a pending update
# descr : Addon description

QtCore.QThread.__init__(self)
self.repos = repos
self.idx = idx
Expand Down

0 comments on commit e243c6e

Please sign in to comment.