Skip to content

Commit

Permalink
Minor: Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfroediger committed Feb 7, 2025
1 parent 7f44f64 commit 7487012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/guides/hyper_file/geodata.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ from tableauhyperapi import Connection, HyperProcess, SqlType, TableDefinition,

with HyperProcess(Telemetry.SEND_USAGE_DATA_TO_TABLEAU, 'myapp' ) as hyper:
with Connection(hyper.endpoint, 'GeospatialExample.hyper', CreateMode.CREATE_AND_REPLACE) as connection:
# Create table with `tableau.tabgeography` column
# Create a table with a `tableau.tabgeography` column
connection.catalog.create_schema('Extract')
geo_table = TableDefinition(TableName('Extract','Extract'), [
TableDefinition.Column('Name', SqlType.text(), nullability=NOT_NULLABLE),
Expand Down Expand Up @@ -133,7 +133,7 @@ path_to_csv = "locations.csv"

with HyperProcess(Telemetry.SEND_USAGE_DATA_TO_TABLEAU, 'myapp' ) as hyper:
with Connection(hyper.endpoint, 'GeospatialFromCSVExample.hyper', CreateMode.CREATE_AND_REPLACE) as connection:
# Create table with `tableau.tabgeography` column
# Create a table with a `tableau.tabgeography` column
connection.catalog.create_schema('Extract')
geo_table = TableDefinition(TableName('Extract','Extract'), [
TableDefinition.Column('Name', SqlType.text(), nullability=NOT_NULLABLE),
Expand Down

0 comments on commit 7487012

Please sign in to comment.