Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andrey-churkin committed Jan 14, 2025
1 parent f993534 commit 5ffab9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nncf/common/strip.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ def strip(model: TModel, do_copy: bool = True) -> TModel:
elif model_backend == BackendType.TENSORFLOW:
from nncf.tensorflow.strip import strip as strip_tf

return strip_tf(model, do_copy)
return strip_tf(model, do_copy) # type: ignore

raise nncf.UnsupportedBackendError(f"Method `strip` does not support for {model_backend.value} backend.")

0 comments on commit 5ffab9e

Please sign in to comment.