Skip to content

Commit

Permalink
File name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverkinch committed Feb 13, 2024
1 parent 122731e commit 2f68b58
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions src/doms_databasen/processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

from omegaconf import DictConfig

from .constants import N_FILES_PROCESSED_CASE_DIR, N_FILES_RAW_CASE_DIR
from ._constants import N_FILES_PROCESSED_CASE_DIR, N_FILES_RAW_CASE_DIR
from ._utils import load_jsonl, read_json, save_dict_to_json
from .text_extraction import PDFTextReader
from .utils import load_jsonl, read_json, save_dict_to_json

logger = getLogger(__name__)

Expand Down
8 changes: 4 additions & 4 deletions src/doms_databasen/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
from selenium.webdriver.support.wait import WebDriverWait
from webdriver_manager.chrome import ChromeDriverManager

from .constants import N_FILES_RAW_CASE_DIR
from .exceptions import PDFDownloadException
from .utils import save_dict_to_json
from .xpaths import XPATHS, XPATHS_TABULAR_DATA
from ._constants import N_FILES_RAW_CASE_DIR
from ._exceptions import PDFDownloadException
from ._utils import save_dict_to_json
from ._xpaths import XPATHS, XPATHS_TABULAR_DATA

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion src/doms_databasen/text_extraction.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from skimage.measure._regionprops import RegionProperties
from tika import parser

from src.doms_databasen.constants import (
from ._constants import (
BOX_HEIGHT_LOWER_BOUND,
DPI,
LENGTH_SIX_LETTERS,
Expand Down

0 comments on commit 2f68b58

Please sign in to comment.