Skip to content

Commit

Permalink
Correct code style
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyklay committed Jun 14, 2022
1 parent e28d633 commit 3cebc49
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions environ/environ.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,10 @@ class Env:
)
# Set the project base directory
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
BASE_DIR = os.path.dirname(
os.path.dirname(os.path.abspath(__file__))
)
# Take environment variables from .env file
environ.Env.read_env(os.path.join(BASE_DIR, '.env'))
Expand Down

0 comments on commit 3cebc49

Please sign in to comment.