Commit acbbf7c5 authored by Ivan Tyagov's avatar Ivan Tyagov

In some cases it's not always possible get expected_class from

first row from catalog (espc. when multiple security uids case which
are not always filled in - i.e. mostly default None)
parent 3ed12c7a
......@@ -367,6 +367,11 @@ def sumCatalogResultByWorklist(grouped_worklist_dict, catalog_result):
if type(criterion_value_list) is not ExclusionList:
criterion_id_list.append(criterion_id)
expected_class = class_dict[criterion_id]
# in some cases it's not always possible get expected_class from
# first row from catalog (espc. when multiple security uids case which
# are not always filled in - i.e. mostly default None)
if expected_class == type(None):
expected_class = type(criterion_value_list[0])
if type(criterion_value_list[0]) is not expected_class:
criterion_dict[criterion_id] = ImmutableSet([expected_class(x) for x in criterion_value_list])
elif type(criterion_value_list) is not ImmutableSet:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment