Skip to content

Commit

Permalink
💚 [#29] clean after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
annashamray committed Nov 28, 2024
1 parent ccde16b commit 16a7d65
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions testapp/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
"default": {
"ENGINE": "django.contrib.gis.db.backends.postgis",
"NAME": os.getenv("PGDATABASE", "vng_api_common"),
"USER": os.getenv("DB_USER", "vng_api_common"),
"PASSWORD": os.getenv("DB_PASSWORD", "vng_api_common"),
"USER": os.getenv("DB_USER", "postgres"),
"PASSWORD": os.getenv("DB_PASSWORD", ""),
"HOST": os.getenv("DB_HOST", "localhost"),
"PORT": os.getenv("DB_PORT", 5432),
}
Expand Down
3 changes: 2 additions & 1 deletion vng_api_common/views.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import logging
import os
from collections import OrderedDict
from typing import Optional
Expand All @@ -14,7 +15,7 @@
from rest_framework.response import Response
from rest_framework.views import exception_handler as drf_exception_handler

from vng_api_common.client import Client, ClientError
from vng_api_common.client import Client

from . import exceptions
from .compat import sentry_client
Expand Down

0 comments on commit 16a7d65

Please sign in to comment.