Skip to content

Commit

Permalink
fix(sytaxbuilder): fixes syntax on builder append for metadatauser
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Aug 30, 2024
1 parent 034f9b4 commit e69ddd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query_builder/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def create_column_filter(
if include_osm_type:
filter_col.append("tableoid::regclass AS osm_type")
if include_user_metadata:
filter_col.append(["uid", f""" "user" """, "timestamp"])
filter_col.extend(["uid", f""" "user" """, "timestamp"])
if create_schema:
schema = {}
schema["osm_id"] = "int64"
Expand Down

0 comments on commit e69ddd2

Please sign in to comment.