Skip to content

Commit

Permalink
Removes dotenv override (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrharpo authored Jul 6, 2023
1 parent 827929b commit 9115917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chowda/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
CHOWDA_ENV = environ.get('CHOWDA_ENV', 'development')


dotenv_path = find_dotenv(filename=f'.env.{CHOWDA_ENV}', raise_error_if_not_found=True)
dotenv_path = find_dotenv(filename=f'.env.{CHOWDA_ENV}')


load_dotenv(dotenv_path, override=True)
load_dotenv(dotenv_path)

DEBUG = bool(environ.get('DEBUG'))

Expand Down

0 comments on commit 9115917

Please sign in to comment.