Spaces:
Sleeping
Sleeping
Update app/building_information.py
Browse files
app/building_information.py
CHANGED
@@ -14,6 +14,8 @@ import logging
|
|
14 |
import math
|
15 |
from typing import Dict, Any, Optional, List, Tuple
|
16 |
from app.internal_loads import DEFAULT_BUILDING_INTERNALS
|
|
|
|
|
17 |
|
18 |
# Configure logging
|
19 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
|
|
14 |
import math
|
15 |
from typing import Dict, Any, Optional, List, Tuple
|
16 |
from app.internal_loads import DEFAULT_BUILDING_INTERNALS
|
17 |
+
# Define BUILDING_TYPES as the list of keys from DEFAULT_BUILDING_INTERNALS
|
18 |
+
BUILDING_TYPES = list(DEFAULT_BUILDING_INTERNALS.keys())
|
19 |
|
20 |
# Configure logging
|
21 |
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|