зеркало из https://github.com/microsoft/azure-cli.git
{Pylint} Fix `unused-import` (#17999)
This commit is contained in:
Родитель
b6a3193505
Коммит
400dfb13ba
1
pylintrc
1
pylintrc
|
@ -36,7 +36,6 @@ disable=
|
||||||
too-many-lines,
|
too-many-lines,
|
||||||
unnecessary-comprehension,
|
unnecessary-comprehension,
|
||||||
unrecognized-inline-option,
|
unrecognized-inline-option,
|
||||||
unused-import,
|
|
||||||
use-a-generator,
|
use-a-generator,
|
||||||
using-constant-test,
|
using-constant-test,
|
||||||
wrong-import-order,
|
wrong-import-order,
|
||||||
|
|
|
@ -21,8 +21,6 @@ def show_endpoint_waf_policy_link(client: EndpointsOperations,
|
||||||
profile_name: str,
|
profile_name: str,
|
||||||
endpoint_name: str):
|
endpoint_name: str):
|
||||||
|
|
||||||
from azure.mgmt.cdn.models import (EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLink)
|
|
||||||
|
|
||||||
link = client.get(resource_group_name, profile_name, endpoint_name).web_application_firewall_policy_link
|
link = client.get(resource_group_name, profile_name, endpoint_name).web_application_firewall_policy_link
|
||||||
if link is not None:
|
if link is not None:
|
||||||
return link
|
return link
|
||||||
|
|
Загрузка…
Ссылка в новой задаче