Karthikeyen92
commited on
Commit
•
4bfd700
1
Parent(s):
11b434b
Update app.py
Browse files
app.py
CHANGED
@@ -693,5 +693,6 @@ def main(hugg):
|
|
693 |
st.markdown("<p style='text-align: center; color: #666;'>© 2024 EY</p>", unsafe_allow_html=True)
|
694 |
|
695 |
if __name__ == "__main__":
|
696 |
-
hugg = os.getenv("IS_HUGG")
|
|
|
697 |
main(hugg)
|
|
|
693 |
st.markdown("<p style='text-align: center; color: #666;'>© 2024 EY</p>", unsafe_allow_html=True)
|
694 |
|
695 |
if __name__ == "__main__":
|
696 |
+
hugg = os.getenv("IS_HUGG") == "True"
|
697 |
+
print(hugg)
|
698 |
main(hugg)
|