Skip to content

Commit

Permalink
py: Fix test-dss.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Sep 30, 2024
1 parent 8ed576f commit b4fd0ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/utils/test-dss.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def pr_old():
break
vp = mrf[vp_name]

print(f'{vp_name} enable={vp['CONTROL']['ENABLE']}')
print(f'{vp_name} enable={vp["CONTROL"]["ENABLE"]}')

ovr_name = f'OVR{vp_idx}'
if not ovr_name in mrf:
Expand All @@ -139,7 +139,7 @@ def pr_old():
for ovr_attr_idx in range(0, 4):
ovr_attrs_name = f'ATTRIBUTES_{ovr_attr_idx}'
reg = ovr[ovr_attrs_name]
print(f' {ovr_attrs_name} enable={reg['ENABLE']} channelin={reg['CHANNELIN']} posx={reg['POSX']} posy={reg['POSY']}')
print(f' {ovr_attrs_name} enable={reg["ENABLE"]} channelin={reg["CHANNELIN"]} posx={reg["POSX"]} posy={reg["POSY"]}')

print("==")

Expand Down

0 comments on commit b4fd0ed

Please sign in to comment.