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