Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 2, 2024
1 parent 39a9cdd commit e9bab13
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions battDB/initial_parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
These functions are run as part of a migration and pre-populate the database with
some default parsers.
"""

from logging import getLogger

logger = getLogger()
Expand Down
1 change: 1 addition & 0 deletions dfndb/initial_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
These functions are run as part of a migration and pre-populate the database with
some default parameters.
"""

PARAMETERS = [
dict(name="Time", status="Public", symbol="t", unit=("Time", "s")),
dict(name="Step time", status="Public", symbol="ts", unit=("Time", "s")),
Expand Down
1 change: 1 addition & 0 deletions dfndb/initial_units.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
These functions are run as part of a migration and pre-populate the database with
some default quantities and units.
"""

from .models import QuantityUnit

SI_QUANTITY_UNITS = [
Expand Down
1 change: 1 addition & 0 deletions liionsden/settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.2/ref/settings/
"""

import os
import tempfile

Expand Down
1 change: 1 addition & 0 deletions liionsden/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 azure.core.utils import parse_connection_string
from django.conf import settings
from django.conf.urls.static import static
Expand Down

0 comments on commit e9bab13

Please sign in to comment.