First time here? Check out the Help page!
1 | initial version |
EpBunch is the python class that eppy defines for representing an energyplus object. My first guess would be that you maybe try to reference an object from another object and you wrote something like:
object_2.Zone_Name = object_1
In that case, you probably want this instead:
object_2.Zone_Name = object_1.Name
Because the attribute value must be a string or an integer, not a Python class instance. But as Jason said, without the code it's difficult to know what is wrong.