We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f12205 commit 649e109Copy full SHA for 649e109
knesset_data/protocols/utils.py
@@ -63,4 +63,4 @@ def get_people_list(text,token):
63
end_index = i
64
break
65
66
- return filter(lambda x: x and (len(x) > 0),lines[start_index +1 : end_index-1]) if found else []
+ return list(filter(lambda x: x and (len(x) > 0), lines[start_index +1 : end_index-1]) if found else [])
0 commit comments