Skip to content

Commit c1fc318

Browse files
shea-parkessaishreeeee
authored andcommitted
Fix syntax in examples in root readme. (#92)
Do this because the environment variable pulls did not have closing quotes on their string literals. Signed-off-by: Sai Shree Pradhan <[email protected]>
1 parent 10fa788 commit c1fc318

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
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)