Skip to content

Commit

Permalink
fix: .env load from current path
Browse files Browse the repository at this point in the history
  • Loading branch information
clemlesne committed Nov 9, 2024
1 parent 6556ac7 commit ff68ca5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/scrape_it_now/helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from dotenv import find_dotenv, load_dotenv

load_dotenv(find_dotenv())
load_dotenv(find_dotenv(
# Use the current working directory from where the command is run
usecwd=True,
))

0 comments on commit ff68ca5

Please sign in to comment.