Skip to content

Commit 9b6f676

Browse files
authored
Fix syntax in examples in root readme. (#92)
Do this because the environment variable pulls did not have closing quotes on their string literals.
1 parent 45d26c8 commit 9b6f676

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ Example usage:
3737
import os
3838
from databricks import sql
3939

40-
host = os.getenv("DATABRICKS_HOST)
41-
http_path = os.getenv("DATABRICKS_HTTP_PATH)
42-
access_token = os.getenv("DATABRICKS_ACCESS_TOKEN)
40+
host = os.getenv("DATABRICKS_HOST")
41+
http_path = os.getenv("DATABRICKS_HTTP_PATH")
42+
access_token = os.getenv("DATABRICKS_ACCESS_TOKEN")
4343

4444
connection = sql.connect(
4545
server_hostname=host,

0 commit comments

Comments
 (0)