Skip to content

Commit

Permalink
Add load_dotenv to get all environments
Browse files Browse the repository at this point in the history
  • Loading branch information
eloravpn committed Nov 23, 2024
1 parent 0205592 commit 05818d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config_setting/utils.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import json
from typing import Any, Optional, Callable, TypeVar, Union

from decouple import config as decouple_config
from exceptiongroup import catch
from dotenv import load_dotenv

from src.config_setting import service as config_setting_service
from src.database import GetDB

from src.config_setting import service as config_setting_service
load_dotenv()

T = TypeVar("T")

Expand Down

0 comments on commit 05818d1

Please sign in to comment.