Skip to content

Commit

Permalink
fix(kubernetes_helper): correct typing for use_kubeconfig (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxime1907 authored Apr 19, 2024
1 parent 14adeeb commit cddebbe
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# wiremind-kubernetes

## v7.4.2 (2024-04-19)
### Fix
- kubernetes_helper: correct typing for `use_kubeconfig`

## v7.4.1 (2023-11-23)
### Chore
- tests: e2e: apply expecteddeploymentscales CRD from wiremind helm chart repository
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.4.1
7.4.2
4 changes: 2 additions & 2 deletions src/wiremind_kubernetes/kubernetes_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class KubernetesHelper:

def __init__(
self,
use_kubeconfig: bool = False,
use_kubeconfig: Optional[bool] = False,
dry_run: bool = False,
pretty: bool = True,
should_load_kubernetes_config: bool = True,
Expand Down Expand Up @@ -86,7 +86,7 @@ class NamespacedKubernetesHelper(KubernetesHelper):

def __init__(
self,
use_kubeconfig: bool = False,
use_kubeconfig: Optional[bool] = False,
namespace: Union[None, str] = None,
dry_run: bool = False,
should_load_kubernetes_config: bool = True,
Expand Down

0 comments on commit cddebbe

Please sign in to comment.