From ea12ca9dd2666f72a6dfbaec1f987562f28629b6 Mon Sep 17 00:00:00 2001 From: Rob D'Aveta Date: Tue, 13 Aug 2024 09:04:37 -0400 Subject: [PATCH 1/2] fixed literal formatted string quote issue --- ppp_connectors/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppp_connectors/helpers.py b/ppp_connectors/helpers.py index 294ec5b..b566fff 100644 --- a/ppp_connectors/helpers.py +++ b/ppp_connectors/helpers.py @@ -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) From bf85221b8d986c0ca5ae25b1307d26ce4a8dc6cb Mon Sep 17 00:00:00 2001 From: Rob D'Aveta Date: Tue, 13 Aug 2024 09:05:51 -0400 Subject: [PATCH 2/2] bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9751373..0120de9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ",