aboutsummaryrefslogtreecommitdiffhomepage
path: root/sec_certs/utils/tables.py
diff options
context:
space:
mode:
Diffstat (limited to 'sec_certs/utils/tables.py')
-rw-r--r--sec_certs/utils/tables.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sec_certs/utils/tables.py b/sec_certs/utils/tables.py
index 5c988a1b..c397eea1 100644
--- a/sec_certs/utils/tables.py
+++ b/sec_certs/utils/tables.py
@@ -1,7 +1,7 @@
-import re
import logging
+import re
from pathlib import Path
-from typing import Set, List, Optional, Union
+from typing import List, Optional, Set, Union
logger = logging.getLogger(__name__)
@@ -60,4 +60,4 @@ def find_tables(txt: str, file_name: Path) -> Optional[Union[List[str], List[int
# Otherwise look for "Table" in text and \f representing footer, then extract page number from footer
logger.info(f"parsing tables in {file_name}")
table_page_indices = find_tables_iterative(txt)
- return table_page_indices if table_page_indices else None \ No newline at end of file
+ return table_page_indices if table_page_indices else None