fixed typeguard tests w/ burnettk

This commit is contained in:
jasquat 2023-01-09 14:49:36 -05:00
parent 799a5da231
commit f35db3aa70
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ from spiffworkflow_backend.services.spec_file_service import SpecFileService
def process_model_create( def process_model_create(
modified_process_group_id: str, body: Dict[str, Union[str, bool, int]] modified_process_group_id: str, body: Dict[str, Union[str, bool, int, None, list]]
) -> flask.wrappers.Response: ) -> flask.wrappers.Response:
"""Process_model_create.""" """Process_model_create."""
body_include_list = [ body_include_list = [
@ -93,7 +93,7 @@ def process_model_delete(
def process_model_update( def process_model_update(
modified_process_model_identifier: str, body: Dict[str, Union[str, bool, int]] modified_process_model_identifier: str, body: Dict[str, Union[str, bool, int, None, list]]
) -> Any: ) -> Any:
"""Process_model_update.""" """Process_model_update."""
process_model_identifier = modified_process_model_identifier.replace(":", "/") process_model_identifier = modified_process_model_identifier.replace(":", "/")