added short docstring

This commit is contained in:
iLLiCiTiT 2021-09-14 15:38:47 +02:00
parent 2f274e9c8f
commit c4ce2001cb

View file

@ -17,6 +17,11 @@ def get_pype_version():
def is_running_staging():
"""Currently used OpenPype is staging version.
Returns:
bool: True if openpype version containt 'staging'.
"""
if "staging" in get_pype_version():
return True
return False