Skip to content

Commit

Permalink
fix: 修改collections.abc导入路径 TencentBlueKing#7625
Browse files Browse the repository at this point in the history
  • Loading branch information
huangpixu committed Dec 9, 2024
1 parent 348976e commit dbf1401
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions gcloud/core/apis/drf/viewsets/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
specific language governing permissions and limitations under the License.
"""
import logging
from collections import Iterable
from collections.abc import Iterable

from django_filters.rest_framework import DjangoFilterBackend
from rest_framework import generics
from rest_framework.response import Response
from rest_framework.filters import SearchFilter, OrderingFilter
from rest_framework.filters import OrderingFilter, SearchFilter
from rest_framework.pagination import LimitOffsetPagination
from rest_framework.response import Response

from django_filters.rest_framework import DjangoFilterBackend
from gcloud.core.apis.drf.viewsets import ApiMixin, IAMMixin
from gcloud.iam_auth import get_iam_client
from gcloud.core.apis.drf.viewsets import IAMMixin, ApiMixin

iam = get_iam_client()
iam_logger = logging.getLogger("iam")
Expand Down

0 comments on commit dbf1401

Please sign in to comment.