Skip to content

Commit

Permalink
Merge pull request #330 from jenshnielsen/fix_kwargs
Browse files Browse the repository at this point in the history
pass metadata/label as kwarg
  • Loading branch information
jenshnielsen authored May 17, 2024
2 parents a2da36f + 432a5d1 commit 356114c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qcodes_contrib_drivers/drivers/Horiba/Horiba_FHR.py
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ def __init__(
)
}

super().__init__(name, additional_metadata | dict(metadata or {}), label)
super().__init__(name, metadata=additional_metadata | dict(metadata or {}), label=label)

gratings = ChannelList(self, 'gratings', GratingChannel)
slits = ChannelList(self, 'slits', SlitChannel)
Expand Down

0 comments on commit 356114c

Please sign in to comment.