Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bitner committed Dec 5, 2024
1 parent fb388c8 commit 8e3a4ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pypgstac/src/pypgstac/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,9 @@ def load_partition(
sql.SQL(
"""
COPY {}
(id, collection, datetime, end_datetime, geometry, content, private)
(id, collection, datetime,
end_datetime, geometry,
content, private)
FROM stdin;
""",
).format(sql.Identifier(partition.name)),
Expand Down Expand Up @@ -354,7 +356,9 @@ def load_partition(
with cur.copy(
"""
COPY items_ingest_temp
(id, collection, datetime, end_datetime, geometry, content, private)
(id, collection, datetime,
end_datetime, geometry,
content, private)
FROM stdin;
""",
) as copy:
Expand Down

0 comments on commit 8e3a4ec

Please sign in to comment.