We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04cd830 commit 34b3abbCopy full SHA for 34b3abb
2 files changed
packages/parser-core/src/bankstatements_core/pdf_table_extractor.py
@@ -14,6 +14,8 @@
14
import logging
15
import warnings
16
17
+import pdfplumber # noqa: F401 - used by extraction module
18
+
19
warnings.warn(
20
"bankstatements_core.pdf_table_extractor is a backward-compatibility shim "
21
"and will be removed in a future version. "
@@ -24,8 +26,6 @@
24
26
stacklevel=2,
25
27
)
28
-import pdfplumber # noqa: F401 - used by extraction module
-
29
logger = logging.getLogger(__name__)
30
31
# Re-export column configuration (backward compatibility)
packages/parser-core/src/bankstatements_core/processor.py
@@ -4,7 +4,6 @@
4
5
from collections import defaultdict # noqa: F401 - imported for test mocking
6
from datetime import datetime
7
-from pathlib import Path
8
from typing import Any
9
10
import pandas as pd
0 commit comments