Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit ab57394

Browse files
committed
black
1 parent 1349974 commit ab57394

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

data_diff/dbt.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def set_connection(self):
302302
"user": rendered_credentials.get("user"),
303303
"password": rendered_credentials.get("password"),
304304
"port": rendered_credentials.get("port"),
305-
"dbname": rendered_credentials.get("dbname")
305+
"dbname": rendered_credentials.get("dbname"),
306306
}
307307
# untested
308308
elif conn_type == "databricks":
@@ -313,11 +313,11 @@ def set_connection(self):
313313
# TODO may need to trim the / at http_path[0]
314314
"http_path": rendered_credentials.get("http_path"),
315315
"schema": rendered_credentials.get("schema"),
316-
"access_token": rendered_credentials.get("token")
316+
"access_token": rendered_credentials.get("token"),
317317
}
318318
# untested
319319
elif conn_type == "postgres":
320-
conn_info ={
320+
conn_info = {
321321
"driver": "postgresql",
322322
"host": rendered_credentials.get("host"),
323323
"user": rendered_credentials.get("user"),

0 commit comments

Comments
 (0)