Skip to content

Commit e0ce997

Browse files
committed
cleanup
1 parent 8639d04 commit e0ce997

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/common/test_tools/utils.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22

33
from common.core.utils import is_enterprise, is_saas
44

5-
EditionPrinterReturnValue = Literal["saas!", "enterprise!", "oss!"]
65

7-
8-
def edition_printer() -> EditionPrinterReturnValue:
6+
def edition_printer() -> Literal["saas!", "enterprise!", "oss!"]:
97
if is_saas():
108
return "saas!"
119
if is_enterprise():

0 commit comments

Comments
 (0)