8b3317e15b
CI / tests (py3.12) (push) Failing after 0s
CI / tests (py3.11) (push) Failing after 0s
CI / tests (py3.10) (push) Failing after 2s
CI / clean-install smoke (push) Failing after 1s
CI / ruff (strict, full repo) (push) Failing after 1s
CI / tests (py3.13) (push) Failing after 3s
16 lines
360 B
Python
16 lines
360 B
Python
from enum import Enum
|
|
|
|
|
|
class AnalystType(str, Enum):
|
|
MARKET = "market"
|
|
# Wire value stays "social" for saved-config and string-keyed-caller
|
|
# back-compat; the user-facing label is "Sentiment Analyst".
|
|
SOCIAL = "social"
|
|
NEWS = "news"
|
|
FUNDAMENTALS = "fundamentals"
|
|
|
|
|
|
class AssetType(str, Enum):
|
|
STOCK = "stock"
|
|
CRYPTO = "crypto"
|