Skip to content
Open
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 src/redisenterprise/azext_redisenterprise/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from .aaz.latest.redisenterprise.database import Wait as _DatabaseWait
from .aaz.latest.redisenterprise import List as _ClusterList
from .aaz.latest.redisenterprise import Show as _ClusterShow
from .aaz.latest.redisenterprise import Wait as _DatabaseWait
from .aaz.latest.redisenterprise import Wait as _ClusterWait
Copy link

Copilot AI Mar 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_ClusterWait is imported but not referenced anywhere in this module. If azdev style/pylint is run, this will typically trigger an unused-import failure. Consider removing this import, or explicitly suppressing the warning only if it’s intentionally kept for side effects (which would be unusual for an import from the AAZ command layer).

Suggested change
from .aaz.latest.redisenterprise import Wait as _ClusterWait

Copilot uses AI. Check for mistakes.
from .aaz.latest.redisenterprise import Update as _Update
from azure.cli.core.azclierror import (
MutuallyExclusiveArgumentError,
Expand Down
Loading