Skip to content

Commit

Permalink
change format of string.
Browse files Browse the repository at this point in the history
  • Loading branch information
cecille committed Oct 31, 2023
1 parent 82ca7f6 commit 4f295fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/python_testing/matter_testing_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,11 @@ class ProblemNotice:
spec_location: str = ""

def __str__(self):
return f'\nProblem: {str(self.severity)}\n test_name: {self.test_name}\n location: {str(self.location)}\n problem: {self.problem}\n spec_location: {self.spec_location}\n'
return (f'\nProblem: {str(self.severity)}'
f'\n test_name: {self.test_name}'
f'\n location: {str(self.location)}'
f'\n problem: {self.problem}'
f'\n spec_location: {self.spec_location}\n')


@dataclass
Expand Down

0 comments on commit 4f295fc

Please sign in to comment.