Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
alpha-beta-soup committed Apr 27, 2023
1 parent 825b7e6 commit 96e6106
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vector2dggs/h3.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def _index(
q = sqlalchemy.text(f"SELECT {id_field}, {geom_col} FROM {table}")
else:
q = sqlalchemy.text(f"SELECT {geom_col} FROM {table}")
df = gpd.read_postgis(
q, con.connect(), geom_col=geom_col
).rename_geometry("geometry")
df = gpd.read_postgis(q, con.connect(), geom_col=geom_col).rename_geometry(
"geometry"
)
else:
# Read file
df = gpd.read_file(input_file)
Expand Down

0 comments on commit 96e6106

Please sign in to comment.