(key_type: bytes, job_id: JobID, key: Optional[bytes])
| 50 | |
| 51 | |
| 52 | def make_function_table_key(key_type: bytes, job_id: JobID, key: Optional[bytes]): |
| 53 | if key is None: |
| 54 | return b":".join([key_type, job_id.hex().encode()]) |
| 55 | else: |
| 56 | return b":".join([key_type, job_id.hex().encode(), key]) |
| 57 | |
| 58 | |
| 59 | def build_setup_hook_export_entry( |
no test coverage detected
searching dependent graphs…