From 76f356dc17ca1651333e4643c218e852b80b1e0f Mon Sep 17 00:00:00 2001 From: Daniel Kjellid Date: Thu, 8 Aug 2024 10:47:17 +0200 Subject: [PATCH] flake8 --- django_api_decorator/schema_file.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/django_api_decorator/schema_file.py b/django_api_decorator/schema_file.py index 1f660d2..b8bca8b 100644 --- a/django_api_decorator/schema_file.py +++ b/django_api_decorator/schema_file.py @@ -45,8 +45,8 @@ def get_api_spec() -> dict[str, Any]: def get_path() -> Path: if not hasattr(settings, "API_DECORATOR_SCHEMA_PATH"): raise ValueError( - "API_DECORATOR_SCHEMA_PATH must be set in settings in order to save the api spec " - "to a file." + "API_DECORATOR_SCHEMA_PATH must be set in settings in order to save the " + "api spec to a file." ) path = Path(settings.API_DECORATOR_SCHEMA_PATH) # type: ignore[misc]