Skip to content

Commit 2c0e346

Browse files
committed
isort fixes
1 parent c999b32 commit 2c0e346

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

stac_fastapi/pgstac/stac_fastapi/pgstac/db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import attr
88
import orjson
9-
from asyncpg import exceptions, Connection
9+
from asyncpg import Connection, exceptions
1010
from buildpg import V, asyncpg, render
1111
from fastapi import FastAPI, Request
1212

stac_fastapi/pgstac/tests/clients/test_postgres.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
import pytest
88
from fastapi import Request
9-
109
from stac_pydantic import Collection, Item
11-
from stac_fastapi.pgstac.db import connect_to_db, close_db_connection, get_connection
10+
11+
from stac_fastapi.pgstac.db import close_db_connection, connect_to_db, get_connection
1212

1313
# from tests.conftest import MockStarletteRequest
1414
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)