Skip to content

Commit

Permalink
Update power_checker.py | Manual sync with power-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsuresh authored Jan 15, 2025
1 parent 6b5f465 commit d575121
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/submission/power/power_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class CheckerWarning(Exception):
pass


SUPPORTED_VERSION = ["1.10.0"]
SUPPORTED_VERSION = ["1.11.1"]
SUPPORTED_MODEL = {
"YokogawaWT210": 8,
"YokogawaWT500": 35,
Expand Down Expand Up @@ -214,7 +214,7 @@ def get_ptd_answer(command: str) -> str:

assert (
version in SUPPORTED_VERSION
), f"PTD version {version!r} is not supported. Supported versions are 1.10.0"
), f"PTD version {version!r} is not supported. Supported versions are {SUPPORTED_VERSION}"
assert (
power_meter_model in SUPPORTED_MODEL.keys()
), f"Power meter {power_meter_model!r} is not supported. Only {', '.join(SUPPORTED_MODEL.keys())} are supported."
Expand Down

0 comments on commit d575121

Please sign in to comment.