Files
check-ios-bus/Utilities/platform/2/generation/isNotKeyword.py
Михаил Капелько d893364ff4 d
2023-12-28 13:33:48 +03:00

12 lines
191 B
Python

def isNotKeyword(str):
keywords = [
"ex",
"recent",
"set",
"toggle",
"toggleNil",
"vm",
"$vm"
]
return str not in keywords