Skip to content

Commit d64e648

Browse files
committed
fix env loading
1 parent 09d5599 commit d64e648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
async def main() -> None:
1919
"""Launch browser, scrape Zillow listings, and submit to Google Form."""
20-
dotenv_values = dotenv.dotenv_values("../.env")
20+
dotenv_values = dotenv.dotenv_values(".env")
2121
url = dotenv_values.get("ZILLOW_URL", ZillowURLs.CLONE_URL)
2222
if not url:
2323
err = "Missing URL for scraping"

0 commit comments

Comments
 (0)