Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
Signed-off-by: lugi0 <[email protected]>
  • Loading branch information
lugi0 committed Dec 19, 2024
1 parent 5396178 commit afbe4ca
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/model_registry/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from typing import List

from kubernetes.dynamic import DynamicClient
from ocp_resources.namespace import Namespace
from ocp_resources.service import Service
Expand All @@ -15,7 +13,7 @@


class TooManyServices(Exception):
def __init__(self, services: List):
def __init__(self, services: list[Service]):
self.services = services

def __str__(self) -> str:
Expand Down

0 comments on commit afbe4ca

Please sign in to comment.