Skip to content

Commit cb7726c

Browse files
Bump black from 25.12.0 to 26.1.0 (#331)
* 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](psf/black@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] <support@github.com> * Fix black lint issue * Fix black lint issue --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: docktermj <michael@dockter.com>
1 parent 5989f9c commit cb7726c

2 files changed

Lines changed: 3 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,7 @@ documentation = [
7272
lint = [
7373
"bandit==1.8.6; python_version <= '3.11'",
7474
"bandit==1.9.3; python_version > '3.11'",
75-
"black==25.11.0; python_version <= '3.11'",
76-
"black==25.12.0; python_version > '3.11'",
75+
"black==26.1.0",
7776
"flake8==7.3.0",
7877
"isort==6.1.0; python_version <= '3.11'",
7978
"isort==7.0.0; python_version > '3.11'",

sz_tools/_tool_helpers.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,7 @@ def check_environment() -> None:
286286
secj = os.environ.get("SENZING_ENGINE_CONFIGURATION_JSON")
287287
if not secj or (secj and len(secj) == 0):
288288
# TODO - V4 doc links
289-
print(
290-
textwrap.dedent(
291-
"""\n\
289+
print(textwrap.dedent("""\n\
292290
ERROR: SENZING_ROOT or SENZING_ENGINE_CONFIGURATION_JSON environment variable is not set:
293291
294292
- 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:
299297
- If running within a container set the SENZING_ENGINE_CONFIGURATION_JSON environment variable.
300298
301299
https://github.com/Senzing/knowledge-base/blob/main/lists/environment-variables.md#senzing_engine_configuration_json
302-
"""
303-
)
304-
)
300+
"""))
305301
sys.exit(1)
306302

307303

0 commit comments

Comments
 (0)