Skip to content

Commit

Permalink
Bug fix, must copy param list not reference
Browse files Browse the repository at this point in the history
  • Loading branch information
bengineerd committed Feb 9, 2024
1 parent f5fe496 commit 4839d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/surf/xilinx/_AxiSysMonUltraScale.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(
**kwargs):
super().__init__(description=description, **kwargs)

self.simpleViewList = simpleViewList
self.simpleViewList = simpleViewList[:]

def addPair(name, offset, bitSize, units, bitOffset, description, function, pollInterval=0):
self.add(pr.RemoteVariable(
Expand Down

0 comments on commit 4839d25

Please sign in to comment.