diff --git a/hnn_core/network.py b/hnn_core/network.py index eafdc3714..781717aff 100644 --- a/hnn_core/network.py +++ b/hnn_core/network.py @@ -1543,9 +1543,7 @@ def get_synaptic_gains(self): dict: A dictionary with the connection types ('e_e', 'e_i', 'i_e', 'i_i') as keys and their corresponding gain values. """ - # Initialize gain values with default gain of 1.0 - values = {k: 1.0 for k in ('e_e', 'e_i', 'i_e', 'i_i')} - + values = {} e_cells, i_cells = _get_cell_index_by_synapse_type(self) # Define the connection types and source/target cell indexes