Skip to content

Commit

Permalink
Fix casing of Json type
Browse files Browse the repository at this point in the history
  • Loading branch information
disrupted committed Oct 26, 2023
1 parent 0c784ba commit 2c06ff2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kpops/component_handlers/kubernetes/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
except ImportError:
from typing_extensions import Self

JSON: TypeAlias = dict[str, "JSON"] | list["JSON"] | str | int | float | bool | None
Json: TypeAlias = dict[str, "Json"] | list["Json"] | str | int | float | bool | None


class KubernetesManifest(UserDict[str, JSON]):
class KubernetesManifest(UserDict[str, Json]):
"""Representation of a Kubernetes API object as YAML/JSON mapping."""

@classmethod
Expand Down

0 comments on commit 2c06ff2

Please sign in to comment.