From 45139fee1dbb4584aac333c7faddcec9098f7c7b Mon Sep 17 00:00:00 2001 From: Ronny Vedrilla Date: Tue, 20 Aug 2024 10:15:01 +0200 Subject: [PATCH] Removed unnecessary f-string --- django_scrubber/management/commands/scrub_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_scrubber/management/commands/scrub_validation.py b/django_scrubber/management/commands/scrub_validation.py index 973572c..5db8b34 100644 --- a/django_scrubber/management/commands/scrub_validation.py +++ b/django_scrubber/management/commands/scrub_validation.py @@ -22,7 +22,7 @@ def handle(self, *args, **options): if model_path in whitelisted_models: print(f'Model {model_path!r} was excluded via \'SCRUBBER_VALIDATION_WHITELIST\' and will ' - f'not be validated.') + 'not be validated.') continue print(f'Model {model_path!r}:')