Skip to content

Commit

Permalink
updated docstring for env config helper
Browse files Browse the repository at this point in the history
  • Loading branch information
robd518 committed Aug 20, 2024
1 parent 8c96313 commit c3952a7
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions ppp_connectors/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,12 @@ def check_required_env_vars(config: Dict[str, str], required_vars: List[str]) ->
sys.exit(1)

def combine_env_configs() -> Dict[str, Any]:
"""_summary_
Args:
dotenv_config (Dict[str, str]): _description_
osenv_config (Dict[str, str]): _description_
"""Find a .env file if it exists, and combine it with system environment
variables to form a "combined_config" dictionary of environment variables
Returns:
Dict: _description_
Dict: a dictionary containing the output of a .env file (if found), and
system environment variables
"""

env_config: Dict[str, Any] = dict(dotenv_values(find_dotenv()))
Expand Down

0 comments on commit c3952a7

Please sign in to comment.