Skip to content

Commit 611286b

Browse files
committed
chore: 更新版本号并清理未使用的导入
- 将项目版本从1.1.23更新至1.1.24 - 从base.py模块中移除未使用的Path导入 - 从rss.py模块中移除未使用的traceback导入 这些更改属于维护性更新,不涉及功能变更或bug修复。 版本号更新为后续发布做准备,导入清理有助于保持代码整洁。
1 parent b8b2831 commit 611286b

3 files changed

Lines changed: 1 addition & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "funread"
3-
version = "1.1.23"
3+
version = "1.1.24"
44
description = "一个用于管理和处理阅读源(Legado 阅读 APP 的书源和 RSS 源)的 Python 工具库"
55
readme = "README.md"
66
requires-python = ">=3.8"

src/funread/legado/manage/download/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import os
55
import traceback
66
from datetime import datetime
7-
from pathlib import Path
87
from typing import Any, Dict, Iterator, List, Optional, Union
98

109
import pandas as pd

src/funread/legado/manage/download/rss.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
"""RSS 源下载和管理模块"""
22

3-
import traceback
43
from typing import Any, Dict
54

65
import requests

0 commit comments

Comments
 (0)