Skip to content

Commit 59a3af4

Browse files
authored
fix broken rest due to utils movement (#19728)
1 parent d1a1185 commit 59a3af4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sdk/core/azure-core/azure/core/rest/_rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
from azure.core.exceptions import HttpResponseError
3232

33-
from .._utils import _case_insensitive_dict
33+
from ..utils._utils import _case_insensitive_dict
3434
from ._helpers import (
3535
FilesType,
3636
parse_lines_from_text,

sdk/core/azure-core/azure/core/rest/_rest_py3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
from azure.core.exceptions import HttpResponseError
4343

44-
from .._utils import _case_insensitive_dict
44+
from ..utils._utils import _case_insensitive_dict
4545

4646
from ._helpers import (
4747
ParamsType,

0 commit comments

Comments
 (0)