-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
I am not sure if the solution that I wrote here is the best way. There might be a simpler solution.
ruleset-checking-tool/rct229/rulesets/ashrae9012019/section1/section1rule1.py
Lines 54 to 61 in 73b8291
| def create_data(self, context, data=None): | |
| return { | |
| key: getattr(context, key) | |
| .get("output", {}) | |
| .get("total_area_weighted_building_performance_factor") | |
| for key in context.__dict__ | |
| if getattr(context, key) is not None | |
| } |
Reactions are currently unavailable