Skip to content

Commit d274d5e

Browse files
committed
#374 - Lint fix
1 parent 1de97da commit d274d5e

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
@@ -310,9 +310,7 @@ def check_environment() -> None:
310310
# Check if set or not and that it's not set to null
311311
secj = os.environ.get("SENZING_ENGINE_CONFIGURATION_JSON")
312312
if not secj or (secj and len(secj) == 0):
313-
print(
314-
textwrap.dedent(
315-
"""\n\
313+
print(textwrap.dedent("""\n\
316314
ERROR: SENZING_ROOT or SENZING_ENGINE_CONFIGURATION_JSON environment variable is not set:
317315
318316
- If using a Senzing project on a bare metal install, source the setupEnv file in the project root path
@@ -323,9 +321,7 @@ def check_environment() -> None:
323321
- If running within a container set the SENZING_ENGINE_CONFIGURATION_JSON environment variable.
324322
325323
https://www.senzing.com/docs/quickstart/quickstart_docker/
326-
"""
327-
)
328-
)
324+
"""))
329325
sys.exit(1)
330326

331327

0 commit comments

Comments
 (0)