Skip to content

Commit

Permalink
black error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hiltonlima committed Sep 9, 2024
1 parent 0f42545 commit e44f9bc
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -237,9 +237,7 @@ def __retrieve_steps(method: FunctionDefType) -> List[MatterTestStep]:
step_name = step.args[ARG_STEP_DESCRIPTION_INDEX].value
parsed_step_name = step_name
except Exception as e:
logger.warning(
f"Fail parsing step name from {method.name}, Error:{str(e)}"
)
logger.warning(f"Fail parsing step name from {method.name}, Error:{str(e)}")
parsed_step_name = "UNABLE TO PARSE TEST STEP NAME"

python_steps.append(
Expand Down

0 comments on commit e44f9bc

Please sign in to comment.