1426 vlist = self.__formatQtVariable(variable, typeName) |
1426 vlist = self.__formatQtVariable(variable, typeName) |
1427 varlist.extend(vlist) |
1427 varlist.extend(vlist) |
1428 elif resolver: |
1428 elif resolver: |
1429 varDict = resolver.getDictionary(variable) |
1429 varDict = resolver.getDictionary(variable) |
1430 vlist = self.__formatVariablesList( |
1430 vlist = self.__formatVariablesList( |
1431 list(dict.keys()), varDict, scope, filterList) |
1431 list(varDict.keys()), varDict, scope, filterList) |
1432 varlist.extend(vlist) |
1432 varlist.extend(vlist) |
1433 |
1433 |
1434 self.sendJsonCommand("ResponseVariable", { |
1434 self.sendJsonCommand("ResponseVariable", { |
1435 "scope": scope, |
1435 "scope": scope, |
1436 "variable": var, |
1436 "variable": var, |