Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion awswrangler/data_api/_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _get_column_value( # noqa: PLR0911
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift-data.html#RedshiftDataAPIService.Client.get_statement_result
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/rds-data.html#RDSDataService.Client.execute_statement
"""
for key in column_value:
for key in column_value: # noqa: PLC0206
if column_value[key] is not None:
if (key == "isNull") and column_value[key]:
return None
Expand Down
Loading
Loading