diff options
| author | negasora <negasora@gmail.com> | 2018-06-11 19:03:18 -0400 |
|---|---|---|
| committer | negasora <negasora@gmail.com> | 2018-06-11 19:03:18 -0400 |
| commit | 3b433195716732f63f352730d481a0a9415639a1 (patch) | |
| tree | 5577db4c114c81e395767f835818bc79a1976e08 /python/update.py | |
| parent | 89248d9bdcf24e5ba4e49ae9871161648fd2d5a0 (diff) | |
Add empty list properties to some classes to allow for visibility
Diffstat (limited to 'python/update.py')
| -rw-r--r-- | python/update.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/update.py b/python/update.py index 1eb8ea61..2f817595 100644 --- a/python/update.py +++ b/python/update.py @@ -115,6 +115,10 @@ class UpdateChannel(object): self.name = name self.description = desc self.latest_version_num = ver + @property + def list(self): + """Allow tab completion to discover metaclass list property""" + pass @property def versions(self): |
