Skip to content

Commit a0f7f62

Browse files
committed
Fix
1 parent 05d25da commit a0f7f62

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

open_dubbing/utterance.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ def _get_file_name(self):
4444
def load_utterances(self) -> tuple[Any, PreprocessingArtifacts, Any]:
4545
utterance_metadata_file = self._get_file_name()
4646

47-
with open(utterance_metadata_file, "r", encoding="utf-8") as file:
47+
with open(utterance_metadata_file, "r") as file:
48+
# with open(utterance_metadata_file, "r", encoding="utf-8") as file:
4849
data = json.load(file)
4950
utterances = data["utterances"]
5051
preprocessing_output = PreprocessingArtifacts(

0 commit comments

Comments
 (0)