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

Commit 7dc4ca0

Browse files
committed
Bugfix for commit 7bab3ac
1 parent 1a86c58 commit 7dc4ca0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_diff/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _apply_config(config: Dict[str, Any], run_name: str, kw: Dict[str, Any]):
2626
else:
2727
run_name = "default"
2828

29-
if "database1" in kw:
29+
if kw.get("database1") is not None:
3030
for attr in ("table1", "database2", "table2"):
3131
if kw[attr] is None:
3232
raise ValueError(f"Specified database1 but not {attr}. Must specify all 4 arguments, or niether.")

0 commit comments

Comments
 (0)