Skip to content

Commit

Permalink
script cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
flueke committed Sep 16, 2024
1 parent e95f4d9 commit 9e1aa33
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/client/mesycontrol/scripts/set_mcfd16_thresholds.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def main(ctx, mrc, args):
# Load the device profile, in this case it's devices/mcfd16_profile.py
dev_profile= ctx.get_device_profile(dev.idc)

print(f"{dev=}, {dev_profile=}")
#print(f"{dev=}, {dev_profile=}")

if dev.idc != dev_profile.idc:
print(f"Error: ID code mistmatch, wanted {dev_profile.idc=}, got {dev.idc=}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# Load the device profile, in this case it's devices/mcfd16_profile.py
dev_profile= ctx.get_device_profile(dev.idc)

print(f"{dev=}, {dev_profile=}")
#print(f"{dev=}, {dev_profile=}")

if dev.idc != dev_profile.idc:
print(f"Error: ID code mistmatch, wanted {dev_profile.idc=}, got {dev.idc=}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# Load the device profile, in this case it's devices/mhv4_profile.py
mhv4_profile = ctx.get_device_profile(mhv4.idc)

print(f"{mhv4=}, {mhv4_profile=}")
#print(f"{mhv4=}, {mhv4_profile=}")

if mhv4.idc != mhv4_profile.idc:
print(f"Error: ID code mistmatch, wanted {mhv4_profile.idc=}, got {mhv4.idc=}")
Expand Down

0 comments on commit 9e1aa33

Please sign in to comment.