Skip to content

Commit 8f74079

Browse files
committedFeb 11, 2025·
refactor(wato-modes): check _clone for None explicitly
Change-Id: Iff29b92d0d978aeb0f4c60dfc0f5750e6f0d68c3
1 parent 26399d4 commit 8f74079

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎cmk/gui/wato/pages/_simple_modes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -804,11 +804,11 @@ def _get_render_settings(self) -> tuple[Any, DataOrigin, DoValidate]:
804804
True,
805805
)
806806

807-
if self._new and not self._clone:
807+
if self._new and self._clone is None:
808808
# New form, no validation
809809
return DEFAULT_VALUE, DataOrigin.DISK, False
810810

811-
if self._clone:
811+
if self._clone is not None:
812812
self._ident = self._clone
813813

814814
# Existing entry from disk

0 commit comments

Comments
 (0)
Please sign in to comment.