File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,13 +18,10 @@ def _():
1818@app .cell
1919def _ (hm , mo , os ):
2020 mo .stop (
21- not (
22- os .environ .get ("HOTDATA_API_KEY" )
23- or os .environ .get ("HOTDATA_TOKEN" )
24- ),
21+ not os .environ .get ("HOTDATA_API_KEY" ),
2522 mo .callout (
2623 mo .md (
27- "Add **HOTDATA_API_KEY** (or **HOTDATA_TOKEN**) to your environment "
24+ "Add **HOTDATA_API_KEY** to your environment "
2825 "to run this example."
2926 ),
3027 kind = "warn" ,
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def ui(self):
7777def workspace_selector_from_env (* , label : str = "Workspace" ) -> WorkspaceSelector :
7878 api_key = default_api_key ()
7979 if not api_key :
80- raise RuntimeError ("HOTDATA_API_KEY or HOTDATA_TOKEN must be set." )
80+ raise RuntimeError ("HOTDATA_API_KEY must be set." )
8181 host = default_host ()
8282 session = default_session_id ()
8383 return WorkspaceSelector (
You can’t perform that action at this time.
0 commit comments