Skip to content

Commit

Permalink
Address lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 17, 2023
1 parent 05dc8d6 commit 96b8193
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tests/core/test_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@
from singer_sdk.streams.graphql import GraphQLStream
from singer_sdk.streams.rest import RESTStream
from singer_sdk.typing import IntegerType, PropertiesList, Property, StringType
from tests.core.conftest import SimpleTestStream

CONFIG_START_DATE = "2021-01-01"

if t.TYPE_CHECKING:
from singer_sdk import Stream, Tap
from tests.core.conftest import SimpleTestTap


class RestTestStream(RESTStream):
Expand Down
2 changes: 1 addition & 1 deletion tests/samples/test_target_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def path_to_target_db(tmp_path: Path) -> Path:


@pytest.fixture
def sqlite_target_test_config(path_to_target_db: str) -> dict:
def sqlite_target_test_config(path_to_target_db: Path) -> dict:
"""Get configuration dictionary for target-csv."""
return {"path_to_db": str(path_to_target_db)}

Expand Down

0 comments on commit 96b8193

Please sign in to comment.