From 36c3c55abcc7abf8fe1879a5cf1f54a0a58b0f19 Mon Sep 17 00:00:00 2001 From: Usama Sadiq Date: Mon, 26 Feb 2024 16:54:50 +0500 Subject: [PATCH] fix: fix quality failure --- submissions/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/submissions/errors.py b/submissions/errors.py index 737a77c..25d0f3d 100644 --- a/submissions/errors.py +++ b/submissions/errors.py @@ -67,7 +67,7 @@ def __repr__(self): Show the field errors upon output. """ return ( - f'{self.__class__.__name__}' + f'{self.__class__.__name__}' # pylint: disable=no-member f'(msg="{self.message}", field_errors={self.field_errors})' )