Skip to content

Commit c6c1997

Browse files
jirhikergithub-actions[bot]
authored andcommitted
Formatting changes
1 parent 7e14b06 commit c6c1997

2 files changed

Lines changed: 2 additions & 7 deletions

File tree

main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from core.factory import create_api_app
22

3-
43
app = create_api_app()
54

65

tests/integration/test_alembic_migrations.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,18 +226,14 @@ def test_postgis_extension_enabled(self):
226226
def test_water_elevation_materialized_view_has_expected_columns(self):
227227
"""Water elevation materialized view should match the feet-normalized schema."""
228228
with session_ctx() as session:
229-
result = session.execute(
230-
text(
231-
"""
229+
result = session.execute(text("""
232230
SELECT attname
233231
FROM pg_attribute
234232
WHERE attrelid = 'ogc_water_elevation_wells'::regclass
235233
AND attnum > 0
236234
AND NOT attisdropped
237235
ORDER BY attnum
238-
"""
239-
)
240-
)
236+
"""))
241237
columns = [row[0] for row in result.fetchall()]
242238

243239
assert columns == [

0 commit comments

Comments
 (0)