Skip to content

Commit e25e346

Browse files
committed
linter fix
1 parent 40a2e2a commit e25e346

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

functions-python/helpers/query_helper.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
from datetime import datetime
33
from typing import Type
44

5+
from sqlalchemy import and_
6+
from sqlalchemy.orm import Session, joinedload
7+
from sqlalchemy.orm.query import Query
8+
59
from shared.database_gen.sqlacodegen_models import (
610
Feed,
711
Gtfsrealtimefeed,
@@ -10,9 +14,6 @@
1014
Gtfsdataset,
1115
Validationreport,
1216
)
13-
from sqlalchemy import and_
14-
from sqlalchemy.orm import Session, joinedload
15-
from sqlalchemy.orm.query import Query
1617

1718
feed_mapping = {"gtfs_rt": Gtfsrealtimefeed, "gtfs": Gtfsfeed, "gbfs": Gbfsfeed}
1819

0 commit comments

Comments
 (0)