### What problem does this PR solve?

Fix typo

### Type of change

- [x] Refactoring
This commit is contained in:
Zhichang Yu 2024-11-11 09:36:39 +08:00 committed by GitHub
parent 20d686737a
commit 7c486ee3f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -39,7 +39,7 @@ from api.utils.api_utils import get_json_result
from rag.utils.storage_factory import STORAGE_IMPL from rag.utils.storage_factory import STORAGE_IMPL
from api.utils.file_utils import filename_type, thumbnail from api.utils.file_utils import filename_type, thumbnail
from api.utils.web_utils import html2pdf, is_valid_url from api.utils.web_utils import html2pdf, is_valid_url
from api.contants import IMG_BASE64_PREFIX from api.constants import IMG_BASE64_PREFIX
@manager.route('/upload', methods=['POST']) @manager.route('/upload', methods=['POST'])

View File

@ -25,7 +25,7 @@ from cachetools import LRUCache, cached
from ruamel.yaml import YAML from ruamel.yaml import YAML
from api.db import FileType from api.db import FileType
from api.contants import IMG_BASE64_PREFIX from api.constants import IMG_BASE64_PREFIX
PROJECT_BASE = os.getenv("RAG_PROJECT_BASE") or os.getenv("RAG_DEPLOY_BASE") PROJECT_BASE = os.getenv("RAG_PROJECT_BASE") or os.getenv("RAG_DEPLOY_BASE")
RAG_BASE = os.getenv("RAG_BASE") RAG_BASE = os.getenv("RAG_BASE")
@ -71,7 +71,7 @@ def get_home_cache_dir():
dir = os.path.join(os.path.expanduser('~'), ".ragflow") dir = os.path.join(os.path.expanduser('~'), ".ragflow")
try: try:
os.mkdir(dir) os.mkdir(dir)
except OSError as error: except OSError:
pass pass
return dir return dir
@ -193,7 +193,7 @@ def thumbnail_img(filename, blob):
presentation.slides[0].get_thumbnail(0.03, 0.03).save( presentation.slides[0].get_thumbnail(0.03, 0.03).save(
buffered, drawing.imaging.ImageFormat.png) buffered, drawing.imaging.ImageFormat.png)
return buffered.getvalue() return buffered.getvalue()
except Exception as e: except Exception:
pass pass
return None return None