We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8639d04 commit e0ce997Copy full SHA for e0ce997
src/common/test_tools/utils.py
@@ -2,10 +2,8 @@
2
3
from common.core.utils import is_enterprise, is_saas
4
5
-EditionPrinterReturnValue = Literal["saas!", "enterprise!", "oss!"]
6
7
-
8
-def edition_printer() -> EditionPrinterReturnValue:
+def edition_printer() -> Literal["saas!", "enterprise!", "oss!"]:
9
if is_saas():
10
return "saas!"
11
if is_enterprise():
0 commit comments