Skip to content

Commit 843fdcd

Browse files
committed
Fix a repr
1 parent 65f798c commit 843fdcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonrpcserver/result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ErrorResult(NamedTuple):
3131
def __repr__(self) -> str:
3232
return (
3333
f"ErrorResult(code={self.code!r}, message={self.message!r}, "
34-
"data={self.data!r})"
34+
f"data={self.data!r})"
3535
)
3636

3737

0 commit comments

Comments
 (0)