Skip to content

Commit ea1c799

Browse files
committed
feat: bump version to 0.7.1, remove unused imports in hybrid engine
Update the version to 0.7.1 and clean up the hybrid_engine.py file by removing unnecessary imports, enhancing code clarity and maintainability.
1 parent 5fb2bcf commit ea1c799

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "xpyxl"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
description = "Create styled excel reports with declarative python."
55
readme = "README.md"
66
authors = [{ name = "dakixr", email = "[email protected]" }]

src/xpyxl/engines/hybrid_engine.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
from __future__ import annotations
88

99
from io import BytesIO
10-
from pathlib import Path
11-
from typing import TYPE_CHECKING, BinaryIO
10+
from typing import BinaryIO
1211

1312
from openpyxl import Workbook as _OpenpyxlWorkbook
1413
from openpyxl import load_workbook as _load_workbook
@@ -17,9 +16,6 @@
1716
from .openpyxl_engine import OpenpyxlEngine
1817
from .xlsxwriter_engine import XlsxWriterEngine
1918

20-
if TYPE_CHECKING:
21-
pass
22-
2319
__all__ = ["HybridEngine"]
2420

2521

0 commit comments

Comments
 (0)