Skip to content

Commit cc1eab0

Browse files
committed
chore(target-s3-parquet): Change target type
1 parent 61c1575 commit cc1eab0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python 3.8.18

target_s3_parquet/sinks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing import Dict, List, Optional
55
import awswrangler as wr
66
from pandas import DataFrame
7-
from singer_sdk import PluginBase
7+
from singer_sdk import Target
88
from singer_sdk.sinks import BatchSink
99
import json
1010
from target_s3_parquet.data_type_generator import (
@@ -28,7 +28,7 @@ class S3ParquetSink(BatchSink):
2828

2929
def __init__(
3030
self,
31-
target: PluginBase,
31+
target: Target,
3232
stream_name: str,
3333
schema: Dict,
3434
key_properties: Optional[List[str]],

0 commit comments

Comments
 (0)