Docs fixes (#1730)

This commit is contained in:
Prateek Chhikara
2024-08-22 11:01:26 -07:00
committed by GitHub
parent ea86dc1576
commit 4f5a40a84f
3 changed files with 3 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ class Neo4jConfig(BaseModel):
values.get("username"),
values.get("password"),
)
if not url and not username and not password:
if not url or not username or not password:
raise ValueError(
"Please provide 'url', 'username' and 'password'."
)