Skip to content

Commit

Permalink
is not none
Browse files Browse the repository at this point in the history
  • Loading branch information
paigerube14 committed Nov 27, 2024
1 parent 364bec0 commit b1fe69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/krkn_lib/tests/base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ def apply_template(self, template: str):
retries = 3
while retries > 0:
template_applied = self.lib_k8s.apply_yaml(file.name, namespace="")
if template_applied != None:
if template_applied is not None:
return
retries -= 1

Expand Down

0 comments on commit b1fe69f

Please sign in to comment.