Pārlūkot izejas kodu

fix: UP031 style rule violation (#3866)

tags/0.6.6
Bowen Liang pirms 1 gada
vecāks
revīzija
7919596a21
Revīzijas autora e-pasta adrese nav piesaistīta nevienam kontam
1 mainītis faili ar 2 papildinājumiem un 3 dzēšanām
  1. 2
    3
      api/core/rag/extractor/word_extractor.py

+ 2
- 3
api/core/rag/extractor/word_extractor.py Parādīt failu

@@ -29,8 +29,7 @@ class WordExtractor(BaseExtractor):

if r.status_code != 200:
raise ValueError(
"Check the url of your file; returned status code %s"
% r.status_code
f"Check the url of your file; returned status code {r.status_code}"
)

self.web_path = self.file_path
@@ -38,7 +37,7 @@ class WordExtractor(BaseExtractor):
self.temp_file.write(r.content)
self.file_path = self.temp_file.name
elif not os.path.isfile(self.file_path):
raise ValueError("File path %s is not a valid file or url" % self.file_path)
raise ValueError(f"File path {self.file_path} is not a valid file or url")

def __del__(self) -> None:
if hasattr(self, "temp_file"):

Notiek ielāde…
Atcelt
Saglabāt