@@ -42,13 +42,14 @@ def PHLEX_REGISTER_ALGORITHMS(m, config):
4242 """Register algorithms."""
4343 # We need to transform scalar inputs to lists first
4444 # i, f1, d1 come from cppsource4py
45- tfs = ((collect_int , "input" , "i" , "l_int" ),
46- (collect_float , "input" , "f1" , "l_float" ),
47- (collect_double , "input" , "d1" , "l_double" ),
48- (list_int_func , collect_int .__name__ , "l_int" , "sum_int" ),
49- (list_float_func , collect_float .__name__ , "l_float" , "sum_float" ),
50- (list_double_func , collect_double .__name__ , "l_double" , "sum_double" )
51- )
45+ tfs = (
46+ (collect_int , "input" , "i" , "l_int" ),
47+ (collect_float , "input" , "f1" , "l_float" ),
48+ (collect_double , "input" , "d1" , "l_double" ),
49+ (list_int_func , collect_int .__name__ , "l_int" , "sum_int" ),
50+ (list_float_func , collect_float .__name__ , "l_float" , "sum_float" ),
51+ (list_double_func , collect_double .__name__ , "l_double" , "sum_double" ),
52+ )
5253
5354 for func , creator , suffix , output in tfs :
5455 input_family = [{"creator" : creator , "layer" : "event" , "suffix" : suffix }]
0 commit comments