We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c999b32 commit 2c0e346Copy full SHA for 2c0e346
stac_fastapi/pgstac/stac_fastapi/pgstac/db.py
@@ -6,7 +6,7 @@
6
7
import attr
8
import orjson
9
-from asyncpg import exceptions, Connection
+from asyncpg import Connection, exceptions
10
from buildpg import V, asyncpg, render
11
from fastapi import FastAPI, Request
12
stac_fastapi/pgstac/tests/clients/test_postgres.py
@@ -6,9 +6,9 @@
import pytest
from fastapi import Request
-
from stac_pydantic import Collection, Item
-from stac_fastapi.pgstac.db import connect_to_db, close_db_connection, get_connection
+
+from stac_fastapi.pgstac.db import close_db_connection, connect_to_db, get_connection
13
# from tests.conftest import MockStarletteRequest
14
logger = logging.getLogger(__name__)
0 commit comments