@@ -110,7 +110,7 @@ def _decode_full(value, decode_cb):
110110 raise JOLTValueError ("Node id must be int or none" )
111111 if not isinstance (labels , list ):
112112 raise JOLTValueError ("Node labels must be list" )
113- if not all (map (lambda l : isinstance (l , str ), labels )):
113+ if not all (map (lambda label : isinstance (label , str ), labels )):
114114 raise JOLTValueError ("Node labels must be list of str" )
115115 if not isinstance (properties , dict ):
116116 raise JOLTValueError ("Node properties must be dict" )
@@ -140,7 +140,7 @@ def _decode_full(cls, value, decode_cb):
140140 if not isinstance (value , list ) or len (value ) != 8 :
141141 raise JOLTValueError ('Expecting list of length 8 after sigil "%s"'
142142 % cls .sigil )
143- id_ , start_node_id , rel_type , end_node_id , properties , element_id ,\
143+ id_ , start_node_id , rel_type , end_node_id , properties , element_id , \
144144 start_node_element_id , end_node_element_id = value
145145
146146 if not isinstance (id_ , int ) and id_ is not None :
0 commit comments