Source code for honeybee_energy_ph.hvac.supportive_device
# -*- coding: utf-8 -*-
# -*- Python Version: 2.7 -*-
"""DEPRECATED in favor of the new 'honeybee_phhvac' module."""
from honeybee_energy_ph.hvac import _base
[docs]
class PhSupportiveDevice(_base._PhHVACBase):
message = "PhSupportiveDevice is deprecated, use 'honeybee_phhvac' instead"
def __init__(self, *args, **kwargs):
raise Exception(self.message)