diff options
author | Jeff Long <willcode4@gmail.com> | 2021-07-13 07:23:48 -0400 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-07-19 09:59:52 -0400 |
commit | 256953bebab151c50fd9a32156f75d2aabc14c17 (patch) | |
tree | 402ead0921dc400a7404b5282fa2b788d0787d45 /grc/core/Constants.py | |
parent | 8dc130ab8f2a617071adada9192aeba807f31565 (diff) |
grc: allow short and byte as valid types in an enum
Signed-off-by: Jeff Long <willcode4@gmail.com>
Diffstat (limited to 'grc/core/Constants.py')
-rw-r--r-- | grc/core/Constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/core/Constants.py b/grc/core/Constants.py index ebcf9ffeea..5d7565e647 100644 --- a/grc/core/Constants.py +++ b/grc/core/Constants.py @@ -46,7 +46,7 @@ HIER_BLOCK_FILE_MODE = stat.S_IRUSR | stat.S_IWUSR | stat.S_IRGRP | stat.S_IWGRP PARAM_TYPE_NAMES = { 'raw', 'enum', - 'complex', 'real', 'float', 'int', + 'complex', 'real', 'float', 'int', 'short', 'byte', 'complex_vector', 'real_vector', 'float_vector', 'int_vector', 'hex', 'string', 'bool', 'file_open', 'file_save', 'dir_select', '_multiline', '_multiline_python_external', |