pre commit

This commit is contained in:
mike cullerton 2022-09-26 15:13:28 -04:00
parent e4ee481a00
commit 78e428feaa
2 changed files with 2 additions and 1 deletions

View File

@ -37,4 +37,4 @@ class GitService:
# git show 78ae5eb:category_number_one/script-task/script-task.bpmn
file_contents: str = os.popen(shell_command).read()[:-1] # noqa: S605
assert file_contents # noqa: S101
return file_contents.encode('utf-8')
return file_contents.encode("utf-8")

View File

@ -29,6 +29,7 @@ from spiffworkflow_backend.services.process_instance_processor import (
ProcessInstanceProcessor,
)
from spiffworkflow_backend.services.process_model_service import ProcessModelService
# from spiffworkflow_backend.services.git_service import GitService