Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 13, 2025
1 parent 013b182 commit 2b67f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/postgis_snippets/fmtm_splitter_buildings.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def split_by_buildings(
dbd: list, # database host, dbname, user, password
):
"""Split the polygon by buildings in the database using an SQL query."""
dbstring = f"PG:host={dbd[0]} dbname={dbd[1]} " f"user={dbd[2]} password={dbd[3]}"
dbstring = f"PG:host={dbd[0]} dbname={dbd[1]} user={dbd[2]} password={dbd[3]}"
dbshell = psycopg2.connect(
host=dbd[0], database=dbd[1], user=dbd[2], password=dbd[3]
)
Expand Down

0 comments on commit 2b67f58

Please sign in to comment.