From e3dd6f0d12443baec8ff5aaf829a150c1bfa2bb0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 01:20:35 +0000 Subject: [PATCH 1/3] Bump black from 25.12.0 to 26.1.0 Bumps [black](https://github.com/psf/black) from 25.12.0 to 26.1.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/25.12.0...26.1.0) --- updated-dependencies: - dependency-name: black dependency-version: 26.1.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b893f6b..17ad6d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,7 +73,7 @@ lint = [ "bandit==1.8.6; python_version <= '3.11'", "bandit==1.9.3; python_version > '3.11'", "black==25.11.0; python_version <= '3.11'", - "black==25.12.0; python_version > '3.11'", + "black==26.1.0; python_version > '3.11'", "flake8==7.3.0", "isort==6.1.0; python_version <= '3.11'", "isort==7.0.0; python_version > '3.11'", From 25178f4a5f304b7f89ddfe3b23f4d7dd556deb41 Mon Sep 17 00:00:00 2001 From: docktermj Date: Tue, 10 Feb 2026 09:15:33 -0500 Subject: [PATCH 2/3] Fix black lint issue --- sz_tools/_tool_helpers.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/sz_tools/_tool_helpers.py b/sz_tools/_tool_helpers.py index e78a695..0386f3e 100644 --- a/sz_tools/_tool_helpers.py +++ b/sz_tools/_tool_helpers.py @@ -286,9 +286,7 @@ def check_environment() -> None: secj = os.environ.get("SENZING_ENGINE_CONFIGURATION_JSON") if not secj or (secj and len(secj) == 0): # TODO - V4 doc links - print( - textwrap.dedent( - """\n\ + print(textwrap.dedent("""\n\ ERROR: SENZING_ROOT or SENZING_ENGINE_CONFIGURATION_JSON environment variable is not set: - If using a Senzing project on a bare metal install, source the setupEnv file in the project root path @@ -299,9 +297,7 @@ def check_environment() -> None: - If running within a container set the SENZING_ENGINE_CONFIGURATION_JSON environment variable. https://github.com/Senzing/knowledge-base/blob/main/lists/environment-variables.md#senzing_engine_configuration_json - """ - ) - ) + """)) sys.exit(1) From 33602a8a4f2fd46549369d30f2d8360979db58a2 Mon Sep 17 00:00:00 2001 From: docktermj Date: Tue, 10 Feb 2026 09:24:57 -0500 Subject: [PATCH 3/3] Fix black lint issue --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 17ad6d1..a7b4d76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,8 +72,7 @@ documentation = [ lint = [ "bandit==1.8.6; python_version <= '3.11'", "bandit==1.9.3; python_version > '3.11'", - "black==25.11.0; python_version <= '3.11'", - "black==26.1.0; python_version > '3.11'", + "black==26.1.0", "flake8==7.3.0", "isort==6.1.0; python_version <= '3.11'", "isort==7.0.0; python_version > '3.11'",