File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1818from awswrangler .data_api import _connector
1919
2020if TYPE_CHECKING :
21- from mypy_boto3_rds_data .client import BotocoreClientError
21+ from mypy_boto3_rds_data .client import BotocoreClientError # type: ignore[attr-defined]
2222 from mypy_boto3_rds_data .type_defs import BatchExecuteStatementResponseTypeDef , ExecuteStatementResponseTypeDef
2323
2424
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ def _write_batch(
179179 Records = records ,
180180 )
181181 except client_timestream .exceptions .RejectedRecordsException as ex :
182- return cast (List [Dict [str , str ]], ex .response ["RejectedRecords" ])
182+ return cast (List [Dict [str , str ]], ex .response ["RejectedRecords" ]) # type: ignore[typeddict-item]
183183 return []
184184
185185
You can’t perform that action at this time.
0 commit comments