Skip to content

Commit 7505a61

Browse files
committed
Introduce in_termination operational state
This commit introduces the new in_termination license operational state. The actual handling will be performed in a later commit. SAASDEV-4342 Change-Id: Iefe5da755086203da70783eac90cada7ec64927c
1 parent 1deec06 commit 7505a61

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

cmk/utils/typing_helpers.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/env python3
2+
# Copyright (C) 2025 Checkmk GmbH - License: GNU General Public License v2
3+
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
4+
# conditions defined in the file COPYING, which is part of this source code package.
5+
6+
from typing import Never
7+
8+
9+
def assert_never_without_raising(value: Never) -> None:
10+
"""
11+
Same as typing.assert_never but does not raise an exception.
12+
"""
13+
pass

0 commit comments

Comments
 (0)