Update test.py
Browse files
test.py
CHANGED
|
@@ -31,6 +31,8 @@ class HVACCalculatorApp:
|
|
| 31 |
def __init__(self):
|
| 32 |
self.tfm = TFMCalculations()
|
| 33 |
# Initialize session state
|
|
|
|
|
|
|
| 34 |
if 'components' not in st.session_state:
|
| 35 |
st.session_state.components = {
|
| 36 |
"windows": [
|
|
|
|
| 31 |
def __init__(self):
|
| 32 |
self.tfm = TFMCalculations()
|
| 33 |
# Initialize session state
|
| 34 |
+
if 'window_action' not in st.session_state:
|
| 35 |
+
st.session_state.glazing_action = {"action": None, "id": None}
|
| 36 |
if 'components' not in st.session_state:
|
| 37 |
st.session_state.components = {
|
| 38 |
"windows": [
|