Update main_app.py
Browse files- main_app.py +4 -0
main_app.py
CHANGED
@@ -237,6 +237,10 @@ def _(deployment_client, project_client):
|
|
237 |
client_callout_kind = "neutral"
|
238 |
return (client_callout_kind,)
|
239 |
|
|
|
|
|
|
|
|
|
240 |
|
241 |
@app.cell
|
242 |
def _():
|
|
|
237 |
client_callout_kind = "neutral"
|
238 |
return (client_callout_kind,)
|
239 |
|
240 |
+
@app.cell
|
241 |
+
def _(deployment_client,):
|
242 |
+
client = deployment_client if deployment_client is not None else None
|
243 |
+
return (client,)
|
244 |
|
245 |
@app.cell
|
246 |
def _():
|