From 96b819318b28a707038f2999340ecc53fcd5573e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Fri, 17 Nov 2023 15:45:02 -0600 Subject: [PATCH] Address lint issues --- tests/core/test_streams.py | 2 ++ tests/samples/test_target_sqlite.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/core/test_streams.py b/tests/core/test_streams.py index dbdf35d79..8a415e55d 100644 --- a/tests/core/test_streams.py +++ b/tests/core/test_streams.py @@ -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): diff --git a/tests/samples/test_target_sqlite.py b/tests/samples/test_target_sqlite.py index 727b760ba..a66805a09 100644 --- a/tests/samples/test_target_sqlite.py +++ b/tests/samples/test_target_sqlite.py @@ -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)}