We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 006fe50 commit 723d990Copy full SHA for 723d990
backends/apple/coreml/compiler/coreml_preprocess.py
@@ -282,9 +282,9 @@ def get_model_debug_info(model_package_dir: Path) -> Optional[ModelDebugInfo]:
282
if delegate_info is None:
283
return None
284
285
- debug_handle_to_operation_path_mapping: Optional[
286
- Dict[str, Any]
287
- ] = delegate_info.get("mapping", None)
+ debug_handle_to_operation_path_mapping: Optional[Dict[str, Any]] = (
+ delegate_info.get("mapping", None)
+ )
288
289
if debug_handle_to_operation_path_mapping is None:
290
0 commit comments