From 218906705195c105be1ae04bcb3b13c3c0791102 Mon Sep 17 00:00:00 2001 From: kieffer julien Date: Fri, 28 Aug 2020 12:29:11 +0200 Subject: [PATCH] Linting --- rest_framework/exceptions.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rest_framework/exceptions.py b/rest_framework/exceptions.py index cb62787be..dbfbfc4b8 100644 --- a/rest_framework/exceptions.py +++ b/rest_framework/exceptions.py @@ -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),