8 lines
107 B
Python
8 lines
107 B
Python
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class WaitDataPolicy(str, Enum):
|
||
|
none = "none"
|
||
|
one = "one"
|
||
|
all = "all"
|