Skip to content

Commit cb42dcf

Browse files
chore(deps-dev): bump the development-dependencies group with 3 updates (#3029)
* chore(deps-dev): bump the development-dependencies group with 3 updates Bumps the development-dependencies group with 3 updates: [wheel](https://github.com/pypa/wheel), [boto3-stubs](https://github.com/youtype/mypy_boto3_builder) and [ruff](https://github.com/astral-sh/ruff). Updates `wheel` from 0.45.0 to 0.45.1 - [Release notes](https://github.com/pypa/wheel/releases) - [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst) - [Commits](pypa/wheel@0.45.0...0.45.1) Updates `boto3-stubs` from 1.35.63 to 1.35.68 - [Release notes](https://github.com/youtype/mypy_boto3_builder/releases) - [Commits](https://github.com/youtype/mypy_boto3_builder/commits) Updates `ruff` from 0.7.4 to 0.8.0 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.7.4...0.8.0) --- updated-dependencies: - dependency-name: wheel dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: boto3-stubs dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: ruff dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <[email protected]> * fix: ruff noqa PLC0206 --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: jaidisido <[email protected]>
1 parent db4c5be commit cb42dcf

File tree

3 files changed

+36
-33
lines changed

3 files changed

+36
-33
lines changed

awswrangler/data_api/_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def _get_column_value( # noqa: PLR0911
132132
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/redshift-data.html#RedshiftDataAPIService.Client.get_statement_result
133133
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/rds-data.html#RDSDataService.Client.execute_statement
134134
"""
135-
for key in column_value:
135+
for key in column_value: # noqa: PLC0206
136136
if column_value[key] is not None:
137137
if (key == "isNull") and column_value[key]:
138138
return None

0 commit comments

Comments
 (0)