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/transform.py | |
| parent | 89248d9bdcf24e5ba4e49ae9871161648fd2d5a0 (diff) | |
Add empty list properties to some classes to allow for visibility
Diffstat (limited to 'python/transform.py')
| -rw-r--r-- | python/transform.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/transform.py b/python/transform.py index 59d719e7..3284ed74 100644 --- a/python/transform.py +++ b/python/transform.py @@ -200,6 +200,11 @@ class Transform(object): log.log_error(traceback.format_exc()) return False + @property + def list(self): + """Allow tab completion to discover metaclass list property""" + pass + @abc.abstractmethod def perform_decode(self, data, params): if self.type == TransformType.InvertingTransform: |
