From 3e824a9306be314d14c0b190465d5aba53132204 Mon Sep 17 00:00:00 2001 From: ClovertaTheTrilobita Date: Thu, 16 Jan 2025 00:48:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=97=A0=E6=B3=95=E5=88=9D?= =?UTF-8?q?=E5=A7=8B=E5=8C=96=E6=95=B0=E6=8D=AE=E5=BA=93=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20=E5=88=A0=E9=99=A4.idea=E6=96=87=E4=BB=B6=E5=A4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/.gitignore | 3 -- .idea/SanYeCao-Nonebot.iml | 11 ------ .idea/inspectionProfiles/Project_Default.xml | 39 ------------------- .../inspectionProfiles/profiles_settings.xml | 6 --- .idea/misc.xml | 7 ---- .idea/modules.xml | 8 ---- .idea/vcs.xml | 6 --- src/my_sqlite/data_init/data_init.py | 4 +- 8 files changed, 2 insertions(+), 82 deletions(-) delete mode 100644 .idea/.gitignore delete mode 100644 .idea/SanYeCao-Nonebot.iml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore deleted file mode 100644 index 359bb53..0000000 --- a/.idea/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -# 默认忽略的文件 -/shelf/ -/workspace.xml diff --git a/.idea/SanYeCao-Nonebot.iml b/.idea/SanYeCao-Nonebot.iml deleted file mode 100644 index edfb3df..0000000 --- a/.idea/SanYeCao-Nonebot.iml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 8210dbc..0000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 105ce2d..0000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index eb37281..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index 6fb409e..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 94a25f7..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/my_sqlite/data_init/data_init.py b/src/my_sqlite/data_init/data_init.py index a73639d..4356f84 100644 --- a/src/my_sqlite/data_init/data_init.py +++ b/src/my_sqlite/data_init/data_init.py @@ -28,7 +28,7 @@ def QrFortune_init(): """ def execute_init_file(): # 拼接文件的完整路径 - file_path = os.getcwd() + "\\src\\qq_plugins\\data_init\\fortune_init_data.py" + file_path = os.getcwd() + "\\src\\my_sqlite\\data_init\\fortune_init_data.py" init_file_path = os.path.join(os.path.dirname(__file__), file_path) try: # 执行初始化文件 @@ -53,7 +53,7 @@ def touch_init(): """ def execute_init_file2(): # 拼接文件的完整路径 - file_path = os.getcwd() + "\\src\\qq_plugins\\data_init\\touch_init_data.py" + file_path = os.getcwd() + "\\src\\my_sqlite\\data_init\\touch_init_data.py" init_file_path = os.path.join(os.path.dirname(__file__), file_path) try: # 执行初始化文件