Fix azure-appconfiguration linting for pylint 4.0.6 - #48266
Open
alisatwat3 wants to merge 3 commits into
Open
Conversation
alisatwat3
requested review from
avanigupta,
jimmyca15,
mrm9084 and
yuanqu72
as code owners
July 26, 2026 23:16
Contributor
|
Thank you for your contribution @alisatwat3! We will review the pull request and get back to you soon. |
|
Azure Pipelines: Successfully started running 1 pipeline(s). 8 pipeline(s) were filtered out due to trigger conditions. There may be pipelines that require an authorized user to comment /azp run to run. |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates azure-appconfiguration for Pylint 4.0.6 compatibility without runtime or API changes.
Changes:
- Adds constructor parameter documentation.
- Applies targeted lint suppressions for intentional
**kwargsand private test imports. - Preserves existing runtime behavior.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
tests/test_sync_token_policy.py |
Allows private implementation imports in tests. |
tests/test_query_param_policy.py |
Allows private policy import. |
tests/test_http.py |
Allows private HTTP helper imports. |
tests/test_consistency.py |
Allows generated model imports. |
tests/test_azure_appconfiguration_client.py |
Allows private policy import. |
tests/test_azure_appconfiguration_client_async.py |
Allows private policy import. |
tests/test_audience.py |
Allows private audience helper import. |
tests/test_audience_policy.py |
Allows private policy import. |
tests/test_audience_error_handling_live.py |
Allows private policy import in live tests. |
tests/test_audience_error_handling_live_async.py |
Allows private policy import in async live tests. |
aio/_sync_token_async.py |
Suppresses intentional keyword-doc linting. |
aio/_azure_appconfiguration_client_async.py |
Suppresses intentional keyword-doc linting. |
_sync_token.py |
Suppresses intentional keyword-doc linting. |
_models.py |
Adds model constructor documentation. |
_azure_appconfiguration_requests.py |
Documents policy constructor parameters. |
_azure_appconfiguration_client.py |
Suppresses intentional keyword-doc linting. |
_audience_error_handling_policy.py |
Documents the audience-state parameter. |
Author
|
@microsoft-github-policy-service agree |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixes #48262
Updates
azure-appconfigurationfor compatibility with Pylint 4.0.6 and Azure Pylint Guidelines Checker 0.5.9.Changes include:
**kwargs.Validation:
git diff --check: passedAll SDK Contribution checklist:
General Guidelines and Best Practices
Testing Guidelines