mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
8 lines
225 B
Python
8 lines
225 B
Python
from ayon_core.lib import StrEnum
|
|
|
|
|
|
class ContextChangeReason(StrEnum):
|
|
"""Reasons for context change in the host."""
|
|
undefined = "undefined"
|
|
workfile_open = "workfile.opened"
|
|
workfile_save = "workfile.saved"
|