Update visualizer_app.py
Browse files- visualizer_app.py +10 -1
visualizer_app.py
CHANGED
@@ -104,7 +104,16 @@ def client_variables(client_instantiation_form):
|
|
104 |
@app.cell
|
105 |
def _():
|
106 |
from baked_in_credentials.creds import credentials
|
107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
|
109 |
|
110 |
@app.cell
|
|
|
104 |
@app.cell
|
105 |
def _():
|
106 |
from baked_in_credentials.creds import credentials
|
107 |
+
from base_variables import wx_regions, wx_platform_url
|
108 |
+
from helper_functions.helper_functions import wrap_with_spaces, get_key_by_value, markdown_spacing
|
109 |
+
return (
|
110 |
+
credentials,
|
111 |
+
wx_regions,
|
112 |
+
wx_platform_url,
|
113 |
+
wrap_with_spaces,
|
114 |
+
get_key_by_value,
|
115 |
+
markdown_spacing,
|
116 |
+
)
|
117 |
|
118 |
|
119 |
@app.cell
|