Skip to content

Commit

Permalink
Fix typing import (#1864)
Browse files Browse the repository at this point in the history
  • Loading branch information
rnetser authored May 30, 2024
1 parent 2f3c0bf commit 83bc748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocp_resources/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from io import StringIO
from signal import SIGINT, signal
from types import TracebackType
from typing import Optional
from typing import Optional, Any, Dict, List

import kubernetes
from kubernetes.dynamic import DynamicClient, ResourceInstance
Expand All @@ -24,7 +24,7 @@
)
from kubernetes.dynamic.resource import ResourceField
from packaging.version import Version
from simple_logger.logger import Any, Dict, List, get_logger, logging
from simple_logger.logger import get_logger, logging
from urllib3.exceptions import MaxRetryError

from ocp_resources.constants import (
Expand Down

0 comments on commit 83bc748

Please sign in to comment.