Skip to content

Commit

Permalink
_LeapXcvrUpperPages.py bug fix
Browse files Browse the repository at this point in the history
it should be  not
  • Loading branch information
ruck314 committed Jul 22, 2024
1 parent ea58d84 commit 023653a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/surf/devices/amphenol/_LeapXcvrUpperPages.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def __init__(self, **kwargs):
mode = 'RO',
disp = '0x{:x}',
typeStr = 'UInt12',
linkedGet = lambda read: self.VendorOuiRaw[2].get(read=read)()+(2**8)*self.VendorOuiRaw[1].get(read=read)()+(2**16)*self.VendorOuiRaw[0].get(read=read)(),
linkedGet = lambda read: self.VendorOuiRaw[2].get(read=read)+(2**8)*self.VendorOuiRaw[1].get(read=read)+(2**16)*self.VendorOuiRaw[0].get(read=read),
dependencies = [self.VendorOuiRaw[x] for x in range(3)],
))

Expand Down

0 comments on commit 023653a

Please sign in to comment.