removed unused var w/ burnettk

This commit is contained in:
jasquat 2022-09-09 14:45:49 -04:00
parent 029b45525d
commit 975c7302ed
1 changed files with 2 additions and 3 deletions

View File

@ -454,7 +454,6 @@ class ProcessInstanceProcessor:
@staticmethod
def find_required_files(
bpmn_file_full_path: str,
parser: BpmnDmnParser,
processed_identifiers: Optional[set[str]] = None,
) -> None:
@ -484,7 +483,7 @@ class ProcessInstanceProcessor:
for new_bpmn_file_full_path in new_bpmn_files:
parser.add_bpmn_file(new_bpmn_file_full_path)
ProcessInstanceProcessor.find_required_files(
new_bpmn_file_full_path, parser, processed_identifiers
parser, processed_identifiers
)
@staticmethod
@ -518,7 +517,7 @@ class ProcessInstanceProcessor:
primary_file_full_path = os.path.join(
workflow_path, (process_model_info.primary_file_name or "")
)
ProcessInstanceProcessor.find_required_files(primary_file_full_path, parser)
ProcessInstanceProcessor.find_required_files(parser)
try:
spec = parser.get_spec(process_model_info.primary_process_id)