Skip to content

Commit

Permalink
Merge pull request #65 from tsugumi-sys/feature/rename-stores-file-in…
Browse files Browse the repository at this point in the history
…-nasdaqapi

Techdebt: rename stores file in nasdaqapi
  • Loading branch information
tsugumi-sys authored May 4, 2024
2 parents 0f6046b + 09f1f06 commit 128f571
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stocklake/nasdaqapi/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from stocklake.nasdaqapi.preprocessor import (
NASDAQSymbolsPreprocessor,
)
from stocklake.nasdaqapi.store import NASDAQDataStore
from stocklake.nasdaqapi.stores import NASDAQDataStore
from stocklake.stores.constants import StoreType

logger = logging.getLogger(__name__)
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/nasdaqapi/test_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from stocklake.exceptions import StockLoaderException
from stocklake.nasdaqapi.constants import Exchange
from stocklake.nasdaqapi.pipeline import NASDAQSymbolsPipeline
from stocklake.nasdaqapi.store import SAVE_ARTIFACTS_DIR
from stocklake.nasdaqapi.stores import SAVE_ARTIFACTS_DIR
from stocklake.stores.constants import StoreType
from tests.nasdaqapi.test_data_loader import mock_requests_get

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import copy

from stocklake.nasdaqapi.store import NasdaqApiSQLAlchemyStore
from stocklake.nasdaqapi.stores import NasdaqApiSQLAlchemyStore
from stocklake.stores.db.models import NasdaqApiData
from stocklake.stores.db.schemas import NasdaqStockCreate
from tests.stores.db.utils import SessionLocal # noqa: F401
Expand Down

0 comments on commit 128f571

Please sign in to comment.