Ronio Jerico Roque commited on
Commit ·
97a4ef0
1
Parent(s): b074da8
Remove return button functionality from TargetMarketAnalyst class
Browse files
classes/Target_Market.py
CHANGED
|
@@ -31,12 +31,7 @@ class TargetMarketAnalyst:
|
|
| 31 |
url = os.getenv('Link')
|
| 32 |
st.write('Evaluation Form: [Link](%s)' % url)
|
| 33 |
|
| 34 |
-
|
| 35 |
-
try:
|
| 36 |
-
if st.button("Return", type='primary'):
|
| 37 |
-
st.switch_page("./pages/home.py")
|
| 38 |
-
except Exception:
|
| 39 |
-
pass
|
| 40 |
|
| 41 |
def request_model(self, payload_txt):
|
| 42 |
response = requests.post(self.model_url, json=payload_txt)
|
|
|
|
| 31 |
url = os.getenv('Link')
|
| 32 |
st.write('Evaluation Form: [Link](%s)' % url)
|
| 33 |
|
| 34 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
|
| 36 |
def request_model(self, payload_txt):
|
| 37 |
response = requests.post(self.model_url, json=payload_txt)
|
classes/__pycache__/Target_Market.cpython-313.pyc
CHANGED
|
Binary files a/classes/__pycache__/Target_Market.cpython-313.pyc and b/classes/__pycache__/Target_Market.cpython-313.pyc differ
|
|
|