This commit is contained in:
kieffer julien 2020-08-28 12:29:11 +02:00
parent 551773208a
commit 2189067051

View File

@ -93,10 +93,10 @@ class ErrorDetail(str):
def __repr__(self):
if self.params:
return 'ErrorDetail(string=%r, code=%r, params=%s)' % (
str(self),
self.code,
self.params
)
str(self),
self.code,
self.params
)
return 'ErrorDetail(string=%r, code=%r)' % (
str(self),