Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Oct 31, 2023
1 parent 48b0280 commit f67d42b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kpops/components/base_components/models/resource.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from collections.abc import Iterable, Mapping
from collections.abc import Mapping, Sequence
from typing import Any, TypeAlias

# representation of final resource for component, e.g. a list of Kubernetes manifests
Resource: TypeAlias = Iterable[Mapping[str, Any]]
Resource: TypeAlias = Sequence[Mapping[str, Any]]

0 comments on commit f67d42b

Please sign in to comment.