Skip to content

Commit

Permalink
remove incorrect type check. (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
kikimo committed Sep 7, 2021
1 parent 98e08e4 commit b7857a6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion nebula2/sclient/BaseResult.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,6 @@ def get_dst_id(self):
raise RuntimeError('The row value is bad format, '
'get edge dst id failed: len is {}'
.format(len(self._row.values)))
assert self._row.values[3].getType() == ttypes.Value.SVAL
return ValueWrapper(self._row.values[3], self._decode_type)

def as_relationship(self):
Expand Down

0 comments on commit b7857a6

Please sign in to comment.