Uility method to create a unload `Operation` based on op type and op.
(session_id, op_type, inputs)
| 736 | |
| 737 | |
| 738 | def create_unload_op(session_id, op_type, inputs): |
| 739 | """Uility method to create a unload `Operation` based on op type and op.""" |
| 740 | op = Operation( |
| 741 | session_id, |
| 742 | op_type, |
| 743 | inputs=inputs, |
| 744 | output_types=types_pb2.NULL_OUTPUT, |
| 745 | ) |
| 746 | return op |
| 747 | |
| 748 | |
| 749 | def unload_app(app): |
no test coverage detected