Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
elif scalar_type == ResultSetScalarTypes.VALUE_INTEGER:
scalar = int(value)
elif scalar_type == ResultSetScalarTypes.VALUE_BOOLEAN:
value = value.decode() if isinstance(value, bytes) else value
if value == "true":
scalar = True
elif value == "false":
scalar = False
else:
print("Unknown boolean type\n")
elif scalar_type == ResultSetScalarTypes.VALUE_DOUBLE:
scalar = float(value)
elif scalar_type == ResultSetScalarTypes.VALUE_ARRAY:
# array variable is introduced only for readability
scalar = array = value
for i in range(len(array)):
scalar[i] = self.parse_scalar(array[i])
elif scalar_type == ResultSetScalarTypes.VALUE_NODE:
scalar = self.parse_node(value)
elif scalar_type == ResultSetScalarTypes.VALUE_EDGE:
scalar = self.parse_edge(value)
elif scalar_type == ResultSetScalarTypes.VALUE_PATH:
scalar = self.parse_path(value)
elif scalar_type == ResultSetScalarTypes.VALUE_UNKNOWN:
print("Unknown scalar type\n")