This commit is contained in:
mike cullerton 2022-12-06 15:42:41 -05:00
parent 937ff0dfe8
commit 6c64044181
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class GitService:
return output return output
@staticmethod @staticmethod
def publish(process_model_id, branch_to_update): def publish(process_model_id: str, branch_to_update: str) -> None:
source_process_model_root = FileSystemService.root_path() source_process_model_root = FileSystemService.root_path()
source_process_model_path = os.path.join(source_process_model_root, process_model_id) source_process_model_path = os.path.join(source_process_model_root, process_model_id)