Skip to content

Commit 25178f4

Browse files
committed
Fix black lint issue
1 parent e3dd6f0 commit 25178f4

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

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)