From 92d70938e6f97780fdf5742fa0f7db4373276f23 Mon Sep 17 00:00:00 2001 From: Benjamin Reese Date: Mon, 13 Nov 2023 13:27:14 -0800 Subject: [PATCH] Linting --- python/surf/devices/analog_devices/_Ad9249.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/python/surf/devices/analog_devices/_Ad9249.py b/python/surf/devices/analog_devices/_Ad9249.py index 2e978e5834..a25c07934c 100644 --- a/python/surf/devices/analog_devices/_Ad9249.py +++ b/python/surf/devices/analog_devices/_Ad9249.py @@ -442,8 +442,8 @@ def __init__(self, self.add(pr.RemoteVariable( - name = f'Delay', - description = f'IDELAY value', + name = 'Delay', + description = 'IDELAY value', offset = 0x00, bitSize = delayBits, bitOffset = 0, @@ -452,7 +452,7 @@ def __init__(self, verify = False, groups = 'NoConfig', )) - + self.add(pr.RemoteCommand( name='Relock', hidden=False, @@ -461,9 +461,9 @@ def __init__(self, bitOffset=0, base=pr.UInt, function=pr.RemoteCommand.toggle)) - + self.add(pr.RemoteVariable( - name = f'ErrorDetCount', + name = 'ErrorDetCount', description = 'Number of times that frame lock has been lost since reset', offset = 0x30, disp = '{:d}', @@ -474,7 +474,7 @@ def __init__(self, )) self.add(pr.RemoteVariable( - name = f'LostLockCount', + name = 'LostLockCount', description = 'Number of times that frame lock has been lost since reset', offset = 0x50, bitSize = 16, @@ -484,7 +484,7 @@ def __init__(self, )) self.add(pr.RemoteVariable( - name = f'Locked', + name = 'Locked', description = 'Readout has locked on to the frame boundary', offset = 0x50, bitSize = 1, @@ -494,7 +494,7 @@ def __init__(self, )) self.add(pr.RemoteVariable( - name = f'AdcFrameSync', + name = 'AdcFrameSync', description = 'Last deserialized FCO value for debug', offset = 0x58, bitSize = 14,