Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkjellid committed Aug 8, 2024
1 parent dddb066 commit 76f356d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions django_api_decorator/schema_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 76f356d

Please sign in to comment.