Skip to content

Commit 649e109

Browse files
committed
fix a bug with attendees parsing
1 parent 2f12205 commit 649e109

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

knesset_data/protocols/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ def get_people_list(text,token):
6363
end_index = i
6464
break
6565

66-
return filter(lambda x: x and (len(x) > 0),lines[start_index +1 : end_index-1]) if found else []
66+
return list(filter(lambda x: x and (len(x) > 0), lines[start_index +1 : end_index-1]) if found else [])

0 commit comments

Comments
 (0)