Skip to content

Commit

Permalink
Merge pull request #11 from PitterPatterPython/fix-env-helper-mistake
Browse files Browse the repository at this point in the history
fixed literal formatted string quote issue
  • Loading branch information
robd518 authored Aug 13, 2024
2 parents 1d7e873 + bf85221 commit ef1f46c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ppp_connectors/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def check_required_env_vars(config: Dict[str, str], required_vars: List[str]) ->
missing_vars = dotenv_missing_vars | osenv_missing_vars

if dotenv_missing_vars and osenv_missing_vars:
print(f'[!] Error: missing required environment variables: {', '.join(missing_vars)}. '
print(f'[!] Error: missing required environment variables: {", ".join(missing_vars)}. '
'Please ensure these are present either in your .env file, or in the '
'system\'s environment variables.', file=sys.stderr)
sys.exit(1)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "ppp-connectors"
packages = [{ include = "ppp_connectors" }]
version = "0.1.5"
version = "0.1.6"
description = "A simple, lightweight set of connectors and functions to various APIs, controlled by a central broker."
authors = [
"Rob D'Aveta <[email protected]>",
Expand Down

0 comments on commit ef1f46c

Please sign in to comment.