Skip to content

Commit

Permalink
fix argument passing bug in TargetsConfiguration (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilkilic committed Feb 6, 2024
1 parent 0c674db commit f20177f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions bluepyemodel/efeatures_extraction/targets_configurator.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ def new_configuration(
available_efeatures = self.access_point.get_available_efeatures()

self.configuration = TargetsConfiguration(
files,
targets,
protocols_rheobase,
available_traces,
available_efeatures,
auto_targets,
protocols_mapping,
files=files,
targets=targets,
protocols_rheobase=protocols_rheobase,
available_traces=available_traces,
available_efeatures=available_efeatures,
auto_targets=auto_targets,
protocols_mapping=protocols_mapping,
)

def load_configuration(self):
Expand Down

0 comments on commit f20177f

Please sign in to comment.