6 lines
191 B
Python
6 lines
191 B
Python
from app_db.app_db import get_value
|
|
|
|
def get_help(dashboard :str):
|
|
helptext = get_value(f"select dash_description from dashboards where dash_name = '{dashboard}.py'")
|
|
return helptext
|