Skip to content

Commit

Permalink
Black: add new line after file docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
svenseeberg committed Jan 27, 2024
1 parent 1073882 commit 9158206
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions opendrift_leeway_webgui/api/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
URL patterns for the Opendrift Leeway Webgui API
"""

from django.urls import include, path

#: The namespace for this URL config (see :attr:`django.urls.ResolverMatch.app_name`)
Expand Down
1 change: 1 addition & 0 deletions opendrift_leeway_webgui/api/v1/urls.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
URL patterns for the first version of the Opendrift Leeway Webgui API
"""

from django.urls import include, path
from drf_spectacular.views import SpectacularAPIView, SpectacularSwaggerView
from rest_framework.routers import DefaultRouter
Expand Down
1 change: 1 addition & 0 deletions opendrift_leeway_webgui/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.2/ref/settings/
"""

import os
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions opendrift_leeway_webgui/core/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""

from django.contrib import admin
from django.urls import include, path

Expand Down
1 change: 1 addition & 0 deletions opendrift_leeway_webgui/leeway/forms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Forms for the web GUI
"""

from django.forms import CharField, ModelForm, TextInput

from .models import LeewaySimulation
Expand Down
1 change: 1 addition & 0 deletions opendrift_leeway_webgui/leeway/utils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Utilities
"""

from django.apps import apps
from django.contrib.auth import get_user_model
from django.core.mail import EmailMessage, send_mail
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
This module contains shared fixtures for pytest
"""

import pytest

from .leeway.test_simulation import _teardown_test_simulation
Expand Down

0 comments on commit 9158206

Please sign in to comment.