Skip to content

Commit 5fcff70

Browse files
committed
deps: remove unused prompt
1 parent 0a9dcb8 commit 5fcff70

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

prompt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
from dataclasses import dataclass, field
2-
import toml
32
import re
43

54
@dataclass
@@ -103,6 +102,7 @@ def get_translated_text(self, tgt_text: str) -> str:
103102
Returns:
104103
str: The extracted translated text.
105104
"""
105+
print(tgt_text)
106106
match = self.tgt_regex.search(tgt_text)
107107
return match.group(1) if match else ""
108108

0 commit comments

Comments
 (0)