Skip to content

Commit

Permalink
Fix: cv_validate_v3 broken with cvprac 1.4.0 due to argument keyword …
Browse files Browse the repository at this point in the history
…change (#694)
  • Loading branch information
noredistribution authored Jul 10, 2024
1 parent 4dd13d5 commit b037597
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,7 @@ def manager(self, devices: list, validate_mode: string):
MODULE_LOGGER.debug(
"queryParams are deviceMac: %s and configuration: %s", str(
system_mac), str(config))
resp = self.__cv_client.api.validate_config_for_device(
device_mac=system_mac,
config=config)
resp = self.__cv_client.api.validate_config_for_device(system_mac, config)
result_data.add_entry(
configlet_name + "_validated_against_" + device_info['device_name']
)
Expand Down

0 comments on commit b037597

Please sign in to comment.