From 7c486ee3f99a6804295fb5c7c4ac99467cbe79ef Mon Sep 17 00:00:00 2001 From: Zhichang Yu Date: Mon, 11 Nov 2024 09:36:39 +0800 Subject: [PATCH] Fix typo (#3319) ### What problem does this PR solve? Fix typo ### Type of change - [x] Refactoring --- api/apps/document_app.py | 2 +- api/{contants.py => constants.py} | 0 api/utils/file_utils.py | 6 +++--- 3 files changed, 4 insertions(+), 4 deletions(-) rename api/{contants.py => constants.py} (100%) diff --git a/api/apps/document_app.py b/api/apps/document_app.py index c6446f3d6..9699f1262 100644 --- a/api/apps/document_app.py +++ b/api/apps/document_app.py @@ -39,7 +39,7 @@ from api.utils.api_utils import get_json_result from rag.utils.storage_factory import STORAGE_IMPL from api.utils.file_utils import filename_type, thumbnail 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']) diff --git a/api/contants.py b/api/constants.py similarity index 100% rename from api/contants.py rename to api/constants.py diff --git a/api/utils/file_utils.py b/api/utils/file_utils.py index 06fa36e99..2dedcdc7b 100644 --- a/api/utils/file_utils.py +++ b/api/utils/file_utils.py @@ -25,7 +25,7 @@ from cachetools import LRUCache, cached from ruamel.yaml import YAML 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") RAG_BASE = os.getenv("RAG_BASE") @@ -71,7 +71,7 @@ def get_home_cache_dir(): dir = os.path.join(os.path.expanduser('~'), ".ragflow") try: os.mkdir(dir) - except OSError as error: + except OSError: pass return dir @@ -193,7 +193,7 @@ def thumbnail_img(filename, blob): presentation.slides[0].get_thumbnail(0.03, 0.03).save( buffered, drawing.imaging.ImageFormat.png) return buffered.getvalue() - except Exception as e: + except Exception: pass return None