Skip to content

Commit 2b6094a

Browse files
authored
Missing pebble for RVC3 (#175)
1 parent 90fae32 commit 2b6094a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modelconverter/packages/rvc2/exporter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
import tflite2onnx
1414
from loguru import logger
15-
from pebble import ThreadPool
1615

1716
from modelconverter.packages.base_exporter import Exporter
1817
from modelconverter.utils import (
@@ -282,6 +281,8 @@ def compile_blob(self, args: list) -> CompileResult:
282281
return CompileResult(blob_output_path, result)
283282

284283
def compile_superblob(self, args: list[str]) -> Path:
284+
from pebble import ThreadPool
285+
285286
blobs_directory = self.intermediate_outputs_dir / "blobs"
286287
blobs_directory.mkdir(parents=True, exist_ok=True)
287288

0 commit comments

Comments
 (0)