8 lines
248 B
Python
8 lines
248 B
Python
from __future__ import annotations
|
|
|
|
from .profiles import load_company_profile
|
|
|
|
|
|
def workflow_action_label(code: str, company: str = "blif", fallback: str | None = None) -> str:
|
|
return load_company_profile(company).action_label(code, fallback)
|