Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.
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 src/k8s-extension/azext_k8s_extension/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# pylint: disable=unused-argument,too-many-locals

from azext_k8s_extension.utils import (
from .utils import (
get_cluster_rp_api_version,
is_dogfood_cluster,
read_config_settings_file,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import copy
from hashlib import md5
from typing import Any, Dict, List, Tuple
from azext_k8s_extension.utils import get_cluster_rp_api_version
from ..utils import get_cluster_rp_api_version

import azure.mgmt.relay
import azure.mgmt.relay.models
Expand Down
2 changes: 1 addition & 1 deletion src/k8s-extension/azext_k8s_extension/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import json
from typing import Tuple
from urllib.parse import urlparse
from azext_k8s_extension import consts
from . import consts
from azure.cli.core.azclierror import InvalidArgumentValueError


Expand Down