Skip to content

Commit

Permalink
one more list->List typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jdcpni committed Aug 9, 2023
1 parent e3868f6 commit c8ea21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psyneulink/core/compositions/composition.py
Original file line number Diff line number Diff line change
Expand Up @@ -8362,7 +8362,7 @@ def _non_additive_comb_fct(function, allow)->Union[bool, None]:

return covariates_sources

def _get_acts_in_out_cov(input_source, output_source, learned_projection)->list[list,list,list]:
def _get_acts_in_out_cov(input_source, output_source, learned_projection)->List[list,list,list]:
"""Get shapes of activation_input and activation_output used by LearningMechanism and BackPropagation Fct"""
# activation_input has more than one value if activation function has more than one argument
activation_input = [input_source.output_ports[0].value]
Expand Down

0 comments on commit c8ea21f

Please sign in to comment.