Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Huth committed Nov 27, 2024
1 parent 5e74853 commit 4a12a42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/Python/python/acts/examples/reconstruction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,7 @@ def addCKFTracks(

overwriteArgs = dict() if len(tslist) == 1 else dict(absEtaMax=None)
cutSets = [
acts.TrackSelector.Config(trackSelectorDefaultKWArgs(c).update(overwriteArgs))
acts.TrackSelector.Config(**(trackSelectorDefaultKWArgs(c) | overwriteArgs))
for c in tslist
]
if len(tslist) == 0:
Expand Down Expand Up @@ -1706,7 +1706,7 @@ def addTrackSelection(

# single cut config for implicit single bin eta configuration
selectorConfig = acts.TrackSelector.Config(
trackSelectorDefaultKWArgs(trackSelectorConfig)
**trackSelectorDefaultKWArgs(trackSelectorConfig)
)

trackSelector = acts.examples.TrackSelectorAlgorithm(
Expand Down

0 comments on commit 4a12a42

Please sign in to comment.