Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkralidis committed Jun 24, 2024
1 parent b14baaf commit 3790b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygeoapi/provider/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def _column_format_to_json_schema_format(column_type):
if column.name == self.geom:
continue

fields[column.name] = {
fields[str(column.name)] = {
'type': _column_type_to_json_schema_type(column.type),
'format': _column_format_to_json_schema_format(column.type)
}
Expand Down

0 comments on commit 3790b45

Please sign in to comment.