Update visualizer_app.py
Browse files- visualizer_app.py +3 -1
visualizer_app.py
CHANGED
|
@@ -63,7 +63,9 @@ with app.setup:
|
|
| 63 |
if creds_var_name in globals():
|
| 64 |
creds_dict = globals()[creds_var_name]
|
| 65 |
if isinstance(creds_dict, dict) and key in creds_dict:
|
| 66 |
-
|
|
|
|
|
|
|
| 67 |
return default
|
| 68 |
|
| 69 |
@app.cell
|
|
|
|
| 63 |
if creds_var_name in globals():
|
| 64 |
creds_dict = globals()[creds_var_name]
|
| 65 |
if isinstance(creds_dict, dict) and key in creds_dict:
|
| 66 |
+
# Return empty string if the value is None
|
| 67 |
+
value = creds_dict[key]
|
| 68 |
+
return "" if value is None else value
|
| 69 |
return default
|
| 70 |
|
| 71 |
@app.cell
|